1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00
freebsd/share/man
Gregory Neil Shapiro 4bfef13db0 Provide a way for users to completely prevent sendmail from trying to start
at boot time.

Instead of rc.conf's sendmail_enable only accepting YES or NO, it can now
also accept NONE.  If set to NONE, none of the other sendmail related
startup items will be done.

Remove an extra queue running daemon might be started that wasn't necessary
(it didn't hurt anything but it wasn't needed).

The new logic is:

# MTA
if ${sendmail_enable} == NONE
        # Do nothing
else if ${sendmail_enable} == YES
        start sendmail with ${sendmail_flags}
else if ${sendmail_submit_enable} == YES
        start sendmail with ${sendmail_submit_flags}
else if ${sendmail_outbound_enable} == YES
        start sendmail with ${sendmail_outbound_flags}
endif
# MSP Queue Runner
if ${sendmail_enable} != NONE &&
   [ -r /etc/mail/submit.cf] && ${sendmail_msp_queue_enable} == YES
        start sendmail with ${sendmail_msp_queue_flags}
endif

Discussed with: Thomas Quinot <Thomas.Quinot@Cuivre.FR.EU.ORG>,
		Christopher Schulte <schulte+freebsd@nospam.schulte.org>
MFC after:	1 week
2002-03-28 03:29:22 +00:00
..
man0
man1 Remove the printf builtin command from sh(1), which command is not 2001-11-20 18:33:59 +00:00
man3 mdoc(7) police: tidy up. 2002-03-18 16:18:33 +00:00
man4 First cut at a geom(4) manpage. 2002-03-27 09:58:14 +00:00
man5 Provide a way for users to completely prevent sendmail from trying to start 2002-03-28 03:29:22 +00:00
man6
man7 Add drivers.conf(5) to the SEE ALSO section. 2002-03-26 10:46:03 +00:00
man8 More details on how to write a crunch.conf file for PicoBSD, 2002-03-21 03:15:47 +00:00
man9 'char *' can be a large entity now (on 64-bit platforms). Thus move it up 2002-03-24 17:02:16 +00:00
tools
Makefile Don't hardcode paths. This is generally silly, and in this case 2002-02-08 21:28:07 +00:00