From owner-freebsd-bugs Tue Jun 11 1:10:14 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E81B537B406 for ; Tue, 11 Jun 2002 01:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g5B8A1e48254; Tue, 11 Jun 2002 01:10:01 -0700 (PDT) (envelope-from gnats) Received: from nwww.freebsd.org (www.FreeBSD.org [216.136.204.117]) by hub.freebsd.org (Postfix) with ESMTP id 3A04B37B406 for ; Tue, 11 Jun 2002 01:03:57 -0700 (PDT) Received: from www.freebsd.org (localhost [127.0.0.1]) by nwww.freebsd.org (8.12.2/8.12.2) with ESMTP id g5B83vhG052955 for ; Tue, 11 Jun 2002 01:03:57 -0700 (PDT) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.2/8.12.2/Submit) id g5B83va3052954; Tue, 11 Jun 2002 01:03:57 -0700 (PDT) Message-Id: <200206110803.g5B83va3052954@www.freebsd.org> Date: Tue, 11 Jun 2002 01:03:57 -0700 (PDT) From: Hideyuki Inada To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: conf/39142: Even if you specify sendmail_enable="NO" in file "/etc/rc.conf", sendmail service still starts at boot time Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 39142 >Category: conf >Synopsis: Even if you specify sendmail_enable="NO" in file "/etc/rc.conf", sendmail service still starts at boot time >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jun 11 01:10:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Hideyuki Inada >Release: 4.6 RC2 >Organization: Capitola Computing Inc. >Environment: FreeBSD davenport.capitolacomputing.com 4.6-RC2 FreeBSD 4.6-RC2 #0: Sat May 18 05:10:05 GMT 2002 root@storm.FreeBSD.org.uk:/usr/src/sys/compile/GENERIC i386 >Description: Even if you specify : sendmail_enable="NO" in file "/etc/rc.conf", sendmail service still starts at boot time. >How-To-Repeat: 1. In /etc/rc.conf, specify sendmail_enable="NO" 2. Reboot the system 3. Verify that sendmail service has started by typing: ps aux | grep sendmail >Fix: The problem can be fixed by making the following changes in the file "/etc/rc": CURRENT: case ${mta_start_script} in /*) if [ -r ${mta_start_script} ]; then sh ${mta_start_script} fi ;; esac WITH FIX: case ${sendmail_enable} in [Yy][Ee][Ss]) if [ -r ${mta_start_script} ]; then sh ${mta_start_script} fi ;; esac >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message