diff options
author | gshapiro <gshapiro@FreeBSD.org> | 2002-09-03 22:15:57 +0000 |
---|---|---|
committer | gshapiro <gshapiro@FreeBSD.org> | 2002-09-03 22:15:57 +0000 |
commit | de510133e2a54da90e8cf63156a9296f82c3f6a2 (patch) | |
tree | 58933d11f7e1db6f5345274555250234204b883f /share | |
parent | 89f4f91595209e5ce151f23a1297515b389febe5 (diff) | |
download | FreeBSD-src-de510133e2a54da90e8cf63156a9296f82c3f6a2.zip FreeBSD-src-de510133e2a54da90e8cf63156a9296f82c3f6a2.tar.gz |
Deprecate the use of sendmail_enable="NONE" as it adversely affects the
new rcNG effort.
Submitted by: Mike Makonnen <makonnen@pacbell.net>
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man8/rc.sendmail.8 | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/share/man/man8/rc.sendmail.8 b/share/man/man8/rc.sendmail.8 index 50e6749..83102c5 100644 --- a/share/man/man8/rc.sendmail.8 +++ b/share/man/man8/rc.sendmail.8 @@ -108,10 +108,17 @@ run the .Xr sendmail 8 daemon at system boot time. If set to -.Dq Li NONE , -do not run any +.Dq Li NO , +do not run a +.Xr sendmail 8 +daemon to listen for incoming network mail. +This does not preclude a .Xr sendmail 8 -daemons at system boot time. +daemon listening on the SMTP port of the loopback interface. +The +.Dq Li NONE +option is deprecated and should not be used. +It will be removed in a future release. .It Va sendmail_flags .Pq Vt str If @@ -233,6 +240,16 @@ if (${sendmail_enable} != NONE && start sendmail with ${sendmail_msp_queue_flags} endif .Ed +.Pp +To completely prevent any sendmail daemons from starting you must +set the following variables in +/etc/rc.conf: +.Bd -literal -offset indent +sendmail_enable="NO" +sendmail_submit_enable="NO" +sendmail_outbound_enable="NO" +sendmail_msp_queue_enable="NO" +.El .Sh SEE ALSO .Xr rc.conf 5 , .Xr rc 8 , |