From owner-freebsd-questions@FreeBSD.ORG Tue Dec 16 15:42:30 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF87716A4CE for ; Tue, 16 Dec 2003 15:42:30 -0800 (PST) Received: from anggerik.meltech.net.my (anggerik.meltech.net.my [202.71.100.92]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8198E43D94 for ; Tue, 16 Dec 2003 15:41:49 -0800 (PST) (envelope-from freebsd@synthexp.net) Received: from synthexp.net (unknown [219.93.73.214]) by anggerik.meltech.net.my (Postfix) with ESMTP id 9C66320B9 for ; Wed, 17 Dec 2003 07:37:23 +0000 (GMT) Message-ID: <3FDF9828.5060306@synthexp.net> Date: Wed, 17 Dec 2003 07:41:28 +0800 From: Ihsan Junaidi User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5) Gecko/20031013 Thunderbird/0.3 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <39020-2200312216232543156@M2W046.mail2web.com> In-Reply-To: <39020-2200312216232543156@M2W046.mail2web.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Postfix and FreeBSD question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Dec 2003 23:42:31 -0000 jwilliams@pop.courtesymortgage.com wrote: > > My question is that, by default, FreeBSD has sendmail up and running. I > seem to vaguely remember that there were a few extra steps that were needed > to remove and install postfix correctly. yes, there is. in /etc/rc.conf, disable sedmail by including this line: sendmail_enable=NONE this will disable sendmail's incoming and outgoing mailing functions. once you have postfix installed, my personal preference is to symlink /usr/local/sbin/postfix to /usr/local/etc/rc.d/postfix (postfix binary accepts start/stop args in compliance with freebsd's rc architecture) rather than using the rc.conf to start postfix at boot time. you can use rc.conf by enabling sendmail but with different startup flags. during postfix port installation, you'll be prompted for the correct usage. the former method is perhaps more cleaner and less convoluting.