Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 31 Jul 2001 19:04:28 -0700
From:      Nick Sayer <nsayer@quack.kfu.com>
To:        freebsd-stable@freebsd.org
Subject:   sendmail .mc file building buglet
Message-ID:  <3B6763AC.3020108@quack.kfu.com>

next in thread | raw e-mail | index | archive | help
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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3B6763AC.3020108>