From owner-freebsd-stable Tue Jul 31 19: 4:37 2001 Delivered-To: freebsd-stable@freebsd.org Received: from quack.kfu.com (quack.kfu.com [205.178.90.194]) by hub.freebsd.org (Postfix) with ESMTP id 4D54937B401 for ; Tue, 31 Jul 2001 19:04:34 -0700 (PDT) (envelope-from nsayer@quack.kfu.com) Received: from morpheus.kfu.com (morpheus.kfu.com [3ffe:1200:301b:1:2d0:b7ff:fe3f:bdd0]) by quack.kfu.com (8.11.3/8.11.3) with ESMTP id f7124Sl30491 (using TLSv1/SSLv3 with cipher EDH-RSA-DES-CBC3-SHA (168 bits) verified OK) for ; Tue, 31 Jul 2001 19:04:33 -0700 (PDT) (envelope-from nsayer@quack.kfu.com) Received: from quack.kfu.com (nospam@localhost [127.0.0.1]) by morpheus.kfu.com (8.11.4/8.11.4) with ESMTP id f7124S401929 for ; Tue, 31 Jul 2001 19:04:28 -0700 (PDT) (envelope-from nsayer@quack.kfu.com) Message-ID: <3B6763AC.3020108@quack.kfu.com> Date: Tue, 31 Jul 2001 19:04:28 -0700 From: Nick Sayer User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.2) Gecko/20010701 X-Accept-Language: en, en-US, en-GB MIME-Version: 1.0 To: freebsd-stable@freebsd.org Subject: sendmail .mc file building buglet Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Just supp'ed -stable and built the world. Now my .mc files make bad .cf files if I don't have FEATURE(access...) in them. The symptom is that the TLS stuff does LookUpDomain rule calls, but if the access feature isn't in there, then it complains at session start. BEFORE: OSTYPE(freebsd4) FEATURE(nullclient, mailhost) FEATURE(`nocanonify') FEATURE(`no_default_msa') DAEMON_OPTIONS(`Port=25, Name=MTA, Addr=127.0.0.1, Family=INET') DAEMON_OPTIONS(`Port=25, Name=MTA6, Addr=::1, Family=INET6') AFTER: OSTYPE(freebsd4) FEATURE(nullclient, mailhost) FEATURE(`nocanonify') FEATURE(access_db, `hash -o /etc/mail/access') FEATURE(`no_default_msa') DAEMON_OPTIONS(`Port=25, Name=MTA, Addr=127.0.0.1, Family=INET') DAEMON_OPTIONS(`Port=25, Name=MTA6, Addr=::1, Family=INET6') (the no default msa and daemon options is an extra anti-relay measure) (the To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message