From owner-freebsd-isp@FreeBSD.ORG Wed May 17 14:45:51 2006 Return-Path: X-Original-To: freebsd-isp@freebsd.org Delivered-To: freebsd-isp@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E18EA16A82D for ; Wed, 17 May 2006 14:45:51 +0000 (UTC) (envelope-from steve@energistic.com) Received: from energistic.com (mail.energistic.com [216.54.148.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0C8143D55 for ; Wed, 17 May 2006 14:45:31 +0000 (GMT) (envelope-from steve@energistic.com) Received: from energistic.com (steve@localhost.energistic.com [127.0.0.1]) by energistic.com (8.13.6/8.13.6) with ESMTP id k4HEjNjj094049; Wed, 17 May 2006 10:45:23 -0400 (EDT) (envelope-from steve@energistic.com) Received: (from steve@localhost) by energistic.com (8.13.6/8.13.6/Submit) id k4HEjMtF093086; Wed, 17 May 2006 10:45:22 -0400 (EDT) (envelope-from steve) Date: Wed, 17 May 2006 10:45:22 -0400 From: Steve Ames To: Brian Candler Message-ID: <20060517144522.GA6110@energistic.com> References: <20060510032848.GL69806@manor.msen.com> <200605170614.k4H6Eh2k042969@puremail.eis.net.au> <20060517125414.GA5652@uk.tiscali.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060517125414.GA5652@uk.tiscali.com> User-Agent: Mutt/1.5.11 X-Spam-Status: No, score=-8.5 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS, SPF_PASS,USER_IN_WHITELIST_TO autolearn=ham version=3.1.1 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on energistic.com Cc: freebsd-isp@freebsd.org, User Ernie Subject: Re: Can sendmail listen for SMTP on two prots at once? X-BeenThere: freebsd-isp@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Internet Services Providers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 May 2006 14:45:55 -0000 On Wed, May 17, 2006 at 01:54:14PM +0100, Brian Candler wrote: > On Wed, May 17, 2006 at 04:14:43PM +1000, User Ernie wrote: > > The other thing is I might be able to install some kind of SMTP AUTH setup, > > unfortunately I can't really user pop befor smtp because the pop servers are > > different machines than the outgoing SMTP server. > > > > What's the easiest way to do SMTP AUTH on FreeBSD? > > Install exim. Install cyrus-sasl from ports. Recompile sendmail linking it to the sasl port. You can modify /etc/make.conf to add the correct linking to sasl for sendmail so that the next time you 'buildworld' it'll do the right thing: (Assuming SASL2): SENDMAIL_CFLAGS=-I/usr/local/include -DSASL=2 SENDMAIL_LDFLAGS=-L/usr/local/lib SENDMAIL_LDADD=-lsasl2 Modify Cyrus SASL settings to match your environment. -steve