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.
Kai
--
dreiecksplatz 8, d-24105 kiel, +49-431-22199869, http://k.123.org/
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message