From owner-freebsd-questions@FreeBSD.ORG Tue Jun 12 21:49:18 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 62A4916A46C for ; Tue, 12 Jun 2007 21:49:18 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from mail-out4.apple.com (mail-out4.apple.com [17.254.13.23]) by mx1.freebsd.org (Postfix) with ESMTP id 494BE13C468 for ; Tue, 12 Jun 2007 21:49:18 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from relay7.apple.com (relay7.apple.com [17.128.113.37]) by mail-out4.apple.com (Postfix) with ESMTP id 36F088D611E; Tue, 12 Jun 2007 14:49:18 -0700 (PDT) Received: from relay7.apple.com (unknown [127.0.0.1]) by relay7.apple.com (Symantec Mail Security) with ESMTP id 1D9F7300B6; Tue, 12 Jun 2007 14:49:18 -0700 (PDT) X-AuditID: 11807125-a1767bb000000801-8a-466f14de581f Received: from [17.214.13.96] (cswiger1.apple.com [17.214.13.96]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by relay7.apple.com (Apple SCV relay) with ESMTP id 053F930063; Tue, 12 Jun 2007 14:49:18 -0700 (PDT) In-Reply-To: <466F1365.8060207@webanoide.org> References: <44b41e4e0706121341o13788520gd249f740e47589c3@mail.gmail.com> <20070612211738.GA76150@slackbox.xs4all.nl> <466F1365.8060207@webanoide.org> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Chuck Swiger Date: Tue, 12 Jun 2007 14:49:17 -0700 To: Mikhail Goriachev X-Mailer: Apple Mail (2.752.2) X-Brightmail-Tracker: AAAAAA== Cc: "freebsd-questions@FreeBSD. ORG" Subject: Re: sendmail startup problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Jun 2007 21:49:18 -0000 On Jun 12, 2007, at 2:43 PM, Mikhail Goriachev wrote: >> How have you disabled it? It is not enough to do >> 'sendmail_enable="NO"'. >> To completely disable sendmail you shoud use >> 'sendmail_enable="NONE"'. > > sendmail_enable="NO" and sendmail_enable="NONE" are the same and > the first one is already present by default in /etc/defaults/rc.conf No, they aren't identical. See /etc/rc.d/sendmail: case ${sendmail_enable} in [Nn][Oo][Nn][Ee]) sendmail_enable="NO" sendmail_submit_enable="NO" sendmail_outbound_enable="NO" sendmail_msp_queue_enable="NO" ;; esac > In order to disable the submission and hence stop sendmail > completely, the following should be added into /etc/rc.conf: > > sendmail_submit_enable="NO" This is a partial solution. The complete set of variables is listed above or in /etc/defaults/rc.conf... -- -Chuck