diff options
author | wosch <wosch@FreeBSD.org> | 1996-11-10 04:46:58 +0000 |
---|---|---|
committer | wosch <wosch@FreeBSD.org> | 1996-11-10 04:46:58 +0000 |
commit | e15ba7df33ea96f6a17dd511ec5fe5522354d82b (patch) | |
tree | eb487ec4d4dc1b22e4ff0142ca6e0cab0638b398 /usr.sbin | |
parent | 29308755dd05106adc433eeaea1ee4e277801b11 (diff) | |
download | FreeBSD-src-e15ba7df33ea96f6a17dd511ec5fe5522354d82b.zip FreeBSD-src-e15ba7df33ea96f6a17dd511ec5fe5522354d82b.tar.gz |
Add sendmail option '-oi'
-oi Do not take dots on a line by themselves as a
message terminator.
Now this crontab entry works:
* * * * * echo foo; echo .; echo blah
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/cron/cron/config.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/cron/cron/config.h b/usr.sbin/cron/cron/config.h index 640e001..44f2cce 100644 --- a/usr.sbin/cron/cron/config.h +++ b/usr.sbin/cron/cron/config.h @@ -17,7 +17,7 @@ /* config.h - configurables for Vixie Cron * - * $Id: config.h,v 1.3 1995/04/14 21:54:16 ache Exp $ + * $Id: config.h,v 1.4 1995/05/09 12:48:05 rgrimes Exp $ */ #if !defined(_PATH_SENDMAIL) @@ -42,10 +42,11 @@ */ #define MAILCMD _PATH_SENDMAIL /*-*/ -#define MAILARGS "%s -FCronDaemon -odi -oem -t" /*-*/ +#define MAILARGS "%s -FCronDaemon -odi -oem -oi -t" /*-*/ /* -Fx = set full-name of sender * -odi = Option Deliverymode Interactive * -oem = Option Errors Mailedtosender + * -oi = Option dot message terminator * -t = read recipients from header of message */ |