From owner-freebsd-questions@FreeBSD.ORG Wed Dec 13 13:16:33 2006 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 3246816A407 for ; Wed, 13 Dec 2006 13:16:33 +0000 (UTC) (envelope-from avatar4d@gmail.com) Received: from nz-out-0506.google.com (nz-out-0506.google.com [64.233.162.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35A1B43CCC for ; Wed, 13 Dec 2006 13:14:52 +0000 (GMT) (envelope-from avatar4d@gmail.com) Received: by nz-out-0506.google.com with SMTP id i11so73860nzh for ; Wed, 13 Dec 2006 05:16:21 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=V3X4L7idyrtBK6HBOPFQBoQgn8TkbugWHydfOJfhIZCtBRMWGdJmRUaFqrGt3d8QGSTVr2DbAWp6g/qO8ZVksooTjml3ddb7Au42yQpx52Barz7mVmi3EPwFEc3+gmenQjXpyd4eDpvznhOAJdjchFM43aT5H4LkuzwOanjm/Ws= Received: by 10.65.100.14 with SMTP id c14mr1470711qbm.1166015767446; Wed, 13 Dec 2006 05:16:07 -0800 (PST) Received: by 10.65.75.14 with HTTP; Wed, 13 Dec 2006 05:16:07 -0800 (PST) Message-ID: <17489c7a0612130516r7fe24ddcm58d7c57f815bd0b4@mail.gmail.com> Date: Wed, 13 Dec 2006 08:16:07 -0500 From: "Chad Gross" To: meilin In-Reply-To: <1461586273.20061213154130@gmail.com> MIME-Version: 1.0 References: <1461586273.20061213154130@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: where is the full compile option for sendmail? 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: Wed, 13 Dec 2006 13:16:33 -0000 On 12/13/06, meilin wrote: > > hi all: > > The original sendmail's compile option is configured by > m4,the one distribute with FreeBSD has tripped out some files and can not > configure as the usual way,I have man make.conf,however, just find > several items for sendmail and a few instructions. > > I want to know how to fully control the compile option while just do > not install sendmail from a original source package? > > thx very much > > -- > > > meilin > mailto:meilinxiaoxue@gmail.com If you want to eliminate sendmail from base when you recompile the system you will add the following to /etc/make.conf: *NO_SENDMAIL= true* Sendmail and all related programs should no longer be on the system after a rebuild. This is take directly from the manpage: *NO_SENDMAIL* (*bool*) Set to not build sendmail(8) and related programs. Chad