From owner-freebsd-questions@FreeBSD.ORG Tue Jan 8 02:35:37 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EB9D216A421 for ; Tue, 8 Jan 2008 02:35:37 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.178]) by mx1.freebsd.org (Postfix) with ESMTP id B511213C4EB for ; Tue, 8 Jan 2008 02:35:37 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: by wa-out-1112.google.com with SMTP id k17so13453336waf.3 for ; Mon, 07 Jan 2008 18:35:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:subject:date:user-agent:cc:references:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; bh=o4DzewMWqnPw4/qCp4pbiAeYPqRWhEgmSbYtR0nNcZc=; b=XKap6LZiwjn4tMP+2KMoWIGuS9bSUFAbKUgKUAexRx5flj523ikj/mvD2tqOSvUKXCXWESgdcJKzKvzSrfvTO1kRN4LKdNS0CbDSNi2kc7aYvs0d2tH9H1yqZOSKXulTi3XmUNdLHoN/ugGKwcQzKpIjaDwCJTY31Okw+hT7VeA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:user-agent:cc:references:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=dQk4Zr5tX68nBWSGdFB+aUH5CpHY5WaRPxM32ofcXmnv6pZfN7P45ZDA3v7oPEOny264B0gOqW3RYjTkw0vQnolJsUHycByhMH2nzNh1vDD52E9FK4M6oQI8UKT+mmYwc/jL42eDHPOXAraDAqaQluiCBJmeGTZzi8HCT0Z+vY8= Received: by 10.114.193.1 with SMTP id q1mr205124waf.75.1199759737013; Mon, 07 Jan 2008 18:35:37 -0800 (PST) Received: from sniper ( [75.167.134.224]) by mx.google.com with ESMTPS id k9sm2366722wah.3.2008.01.07.18.35.32 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 07 Jan 2008 18:35:36 -0800 (PST) From: Andrew Falanga To: Josh Tolbert Date: Mon, 7 Jan 2008 19:35:20 -0700 User-Agent: KMail/1.9.6 References: <200801051118.17211.af300wsm@gmail.com> <47809DEC.3000700@infracaninophile.co.uk> <20080106093434.GA39820@just.puresimplicity.net> In-Reply-To: <20080106093434.GA39820@just.puresimplicity.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200801071935.21450.af300wsm@gmail.com> Cc: FreeBSD Questions Subject: Re: How do I get sendmail working again 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, 08 Jan 2008 02:35:38 -0000 On Sunday 06 January 2008 02:34:34 Josh Tolbert wrote: > On Sun, Jan 06, 2008 at 09:22:52AM +0000, Matthew Seaman wrote: > > There's your problem. You've got two conflicting sets of daemon > > options -- effectively you're telling sendmail to bind to the > > same interfaces twice for port 25. > > > > Just delete the DAEMON_OPTIONS(`Port=smtp, Name=MTA')dnl line > > and try again. > > > > Cheers, > > > > Matthew > > Or just comment out both the IPv4 and IPv6 DAEMON_OPTIONS lines, leaving > the smtp/smtps lines alone. I didn't notice that in the config he posted; > good catch. > > I sent Andy my box's .mc and it has both commented out. > > Thanks, > > Josh Yes, thanks for explaining this. I figured it had to be something like that. Andy