diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 1995-04-12 19:21:43 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 1995-04-12 19:21:43 +0000 |
commit | 4f7ac4bd573d1b1b1e9ad8786890afdebfcb3418 (patch) | |
tree | 6982db3962f10359bc81b10cab20f3e8d44c101f /libexec | |
parent | 4c256f710eeb71038ee3a7e0a219cf808135513d (diff) | |
download | src-4f7ac4bd573d1b1b1e9ad8786890afdebfcb3418.tar.gz src-4f7ac4bd573d1b1b1e9ad8786890afdebfcb3418.zip |
Add some useful sendmail options
Notes
Notes:
svn path=/head/; revision=7777
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/atrun/atrun.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libexec/atrun/atrun.c b/libexec/atrun/atrun.c index 4ab933d16b68..68b0207fff4b 100644 --- a/libexec/atrun/atrun.c +++ b/libexec/atrun/atrun.c @@ -73,7 +73,7 @@ /* File scope variables */ static char *namep; -static char rcsid[] = "$Id: atrun.c,v 1.1 1994/05/10 18:23:08 kernel Exp $"; +static char rcsid[] = "$Id: atrun.c,v 1.2 1995/04/12 02:52:15 ache Exp $"; static debug = 0; /* Local functions */ @@ -280,6 +280,7 @@ run_file(const char *filename, uid_t uid, gid_t gid) { #ifdef __FreeBSD__ execl(_PATH_SENDMAIL, "sendmail", "-F", "Atrun Service", + "-odi", "-oem", mailname, (char *) NULL); #else execl(MAIL_CMD, MAIL_CMD, mailname, (char *) NULL); |