From owner-freebsd-stable Mon Apr 15 3:53:29 2002 Delivered-To: freebsd-stable@freebsd.org Received: from 123.org (123.org [195.244.235.254]) by hub.freebsd.org (Postfix) with SMTP id 140CA37B400 for ; Mon, 15 Apr 2002 03:53:23 -0700 (PDT) Received: (qmail 5048 invoked by uid 1003); 15 Apr 2002 10:53:20 -0000 Date: Mon, 15 Apr 2002 12:53:20 +0200 From: Kai Voigt To: Rasputin Cc: stable@freebsd.org Subject: Re: killing sendmail on boot Message-ID: <20020415125320.Y79455@abc.123.org> References: <20020415114859.A3125@shikima.mine.nu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020415114859.A3125@shikima.mine.nu>; from rasputin@shikima.mine.nu on Mon, Apr 15, 2002 at 11:48:59AM +0100 Organization: 123.org Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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