Date: Mon, 15 Apr 2002 13:03:21 +0200 From: Erik Trulsson <ertr1013@student.uu.se> To: Kai Voigt <k@123.org> Cc: Rasputin <rasputin@shikima.mine.nu>, stable@freebsd.org Subject: Re: killing sendmail on boot Message-ID: <20020415110321.GA1132@student.uu.se> In-Reply-To: <20020415125320.Y79455@abc.123.org> References: <20020415114859.A3125@shikima.mine.nu> <20020415125320.Y79455@abc.123.org>
next in thread | previous in thread | raw e-mail | index | archive | help
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 ertr1013@student.uu.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020415110321.GA1132>