diff options
author | 1999-09-12 10:23:12 +0000 | |
---|---|---|
committer | 1999-09-12 10:23:12 +0000 | |
commit | cd3812530d23c72d8506787ef76ef7369c073e94 (patch) | |
tree | b2c8aeaa88b0ee60237a1525ca04ca26a642d369 | |
parent | define call frame offsets and argument access macros, add space for cr28 in trapframe (diff) | |
download | wireguard-openbsd-cd3812530d23c72d8506787ef76ef7369c073e94.tar.xz wireguard-openbsd-cd3812530d23c72d8506787ef76ef7369c073e94.zip |
Change defaults to start sendmail using '-q30m'. This will not make
sendmail listen to requests on port 25, just process the queue every
30 minutes to take care of any unsent mail. OK millert@.
-rw-r--r-- | etc/rc.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/rc.conf b/etc/rc.conf index 2d98d33e52e..6566bf6a108 100644 --- a/etc/rc.conf +++ b/etc/rc.conf @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: rc.conf,v 1.37 1999/07/08 17:55:27 deraadt Exp $ +# $OpenBSD: rc.conf,v 1.38 1999/09/12 10:23:12 jakob Exp $ # set these to "NO" to turn them off. otherwise, they're used as flags routed_flags=NO # for normal use: routed_flags="-q" @@ -9,7 +9,7 @@ mrouted_flags=NO # for normal use: mrouted_flags="", if activated rarpd_flags=NO # for normal use: rarpd_flags="-a" bootparamd_flags=NO # for normal use: bootparamd_flags="" rbootd_flags=NO # for normal use: rbootd_flags="" -sendmail_flags=NO # for normal use: sendmail_flags="-bd -q30m" +sendmail_flags="-q30m" # for normal use: sendmail_flags="-bd -q30m" smtpfwdd_flags=NO # for normal use: smtpfwdd_flags="", no -bd above. named_flags=NO # for normal use: named_flags="" timed_flags=NO # for normal use: timed_flags="" |