diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-08-29 08:51:56 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-08-29 08:51:56 +0000 |
commit | 2fb5d92ab5c2970a4011f10568624349d28c207e (patch) | |
tree | 7baa8d47dc93c5d8a31009033fb06938c9b9cccf /usr.sbin/cron | |
parent | c3034367cab43214cf36382cf945f8b4a2f43859 (diff) |
Add comment to remind people not to use args in MAILARGS that will
cause sendmail to drop it's setuid privs.
Diffstat (limited to 'usr.sbin/cron')
-rw-r--r-- | usr.sbin/cron/config.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.sbin/cron/config.h b/usr.sbin/cron/config.h index c152bb2e10f..3dd1b48f426 100644 --- a/usr.sbin/cron/config.h +++ b/usr.sbin/cron/config.h @@ -17,7 +17,7 @@ /* config.h - configurables for Vixie Cron * - * $Id: config.h,v 1.3 1999/08/28 20:13:13 millert Exp $ + * $Id: config.h,v 1.4 1999/08/29 08:51:55 millert Exp $ */ #if !defined(_PATH_SENDMAIL) @@ -46,9 +46,10 @@ /* -Fx = set full-name of sender * -odi = Option Deliverymode Interactive * -oem = Option Errors Mailedtosender - * -or0s = Option Readtimeout -- don't time out - * XXX - causes sendmail to drop privs. * -t = read recipient from header of message + * NOTE: since this runs as the user, not root you must + * not specify any args that will cause sendmail + * to drop its suidness (see op.me for a list). */ /* #define MAILCMD "/bin/mail" -*/ |