Date: Mon, 15 Apr 2002 12:53:20 +0200 From: Kai Voigt <k@123.org> To: Rasputin <rasputin@shikima.mine.nu> Cc: stable@freebsd.org Subject: Re: killing sendmail on boot Message-ID: <20020415125320.Y79455@abc.123.org> In-Reply-To: <20020415114859.A3125@shikima.mine.nu>; from rasputin@shikima.mine.nu on Mon, Apr 15, 2002 at 11:48:59AM %2B0100 References: <20020415114859.A3125@shikima.mine.nu>
index | next in thread | previous in thread | raw e-mail
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 majordomo@FreeBSD.org
with "unsubscribe freebsd-stable" in the body of the message
home |
help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020415125320.Y79455>
