On Mon, Apr 15, 2002 at 12:53:20PM +0200, Kai Voigt wrote:
> Rasputin wrote:
> > 
> > Right, what do I need to specify in rc.conf to
> > stop sendmail completely?
> > 
> > I have:
> > 
> > sendmail_enable="NONE"      # Run the sendmail inbound daemon (YES/NO).
> > #sendmail_outbound_enable="NO"      # Dequeue stuck mail (YES/NO).
> > #sendmail_msp_queue_enable="NO"     # Dequeue stuck clientmqueue mail (YES/NO).
> > #sendmail_submit_enable="NO"        # Start a localhost-only MTA for mail 
>submission
> > 
> > Do I need to uncomment anything else? This is a buttload of noise for
> > a service I don't have installed (not that I want to resurrect *that* thread).
> 
> Take a look into /etc/rc
> 
> case ${sendmail_enable} in
> [Yy][Ee][Ss])
>   echo -n ' sendmail'
>   /usr/sbin/sendmail ${sendmail_flags}
>   ;;
> *)
>   case ${sendmail_outbound_enable} in
>   [Yy][Ee][Ss])
>     echo -n ' sendmail'
>     /usr/sbin/sendmail ${sendmail_outbound_flags}
>     ;;
>   esac 
>   ;;
> esac
> 
> So, set both sendmail_enable and sendmail_outbound_enable to NO to
> completely disable any call to sendmail.

Except that this has been changed since you updated your source last.
Please cvsup and look again.

sendmail_enable="NONE"
will completely stop sendmail from starting in the latest -STABLE.


-- 
<Insert your favourite quote here.>
Erik Trulsson
[EMAIL PROTECTED]

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message

Reply via email to