So, how can I get a process to run automatically on startup for an unprivileged user?
It's reasonable to create a fetchmail.sh script in /usr/local/etc/rc.d which does something like:
#!/bin/sh
USER = me COMMAND = /usr/local/bin/fetchmail...
su - ${USER} -c ${COMMAND}
In this case, however, you might want to invoke it from a per-user cron script eievery hour or so instead...
-- -Chuck
_______________________________________________ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
