diff options
author | ache <ache@FreeBSD.org> | 1995-04-12 19:21:43 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1995-04-12 19:21:43 +0000 |
commit | 5e0d09f059bc085e3cf721091a3558a342333ae0 (patch) | |
tree | 6982db3962f10359bc81b10cab20f3e8d44c101f /libexec/atrun | |
parent | 2e4fea754bf2442ab8ae42ed43150768c7646a76 (diff) | |
download | FreeBSD-src-5e0d09f059bc085e3cf721091a3558a342333ae0.zip FreeBSD-src-5e0d09f059bc085e3cf721091a3558a342333ae0.tar.gz |
Add some useful sendmail options
Diffstat (limited to 'libexec/atrun')
-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 4ab933d..68b0207 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); |