Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 Mar 2002 19:29:23 -0800 (PST)
From:      Gregory Neil Shapiro <gshapiro@FreeBSD.org>
To:        cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/etc rc src/etc/defaults rc.conf src/share/man/man5 rc.conf.5
Message-ID:  <200203280329.g2S3TNN22342@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
gshapiro    2002/03/27 19:29:22 PST

  Modified files:
    etc                  rc 
    etc/defaults         rc.conf 
    share/man/man5       rc.conf.5 
  Log:
  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
  
  Revision  Changes    Path
  1.141     +7 -6      src/etc/defaults/rc.conf
  1.307     +27 -15    src/etc/rc
  1.158     +14 -5     src/share/man/man5/rc.conf.5

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200203280329.g2S3TNN22342>