diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-11-15 00:29:45 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-11-15 00:29:45 +0000 |
commit | 334668c37fe733c473d6b6fa5a35557cd1b6440c (patch) | |
tree | 643b2b944e90863bd597aa83bcce9b11501a59f7 | |
parent | 4af8619bce0e7a890a07cae5e55d84eb8add77df (diff) |
Listen on port 587 for IPv6 too. Noticed by todd@
-rw-r--r-- | gnu/usr.sbin/sendmail/cf/cf/openbsd-proto.mc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/usr.sbin/sendmail/cf/cf/openbsd-proto.mc b/gnu/usr.sbin/sendmail/cf/cf/openbsd-proto.mc index 0c58549d405..385eafa2456 100644 --- a/gnu/usr.sbin/sendmail/cf/cf/openbsd-proto.mc +++ b/gnu/usr.sbin/sendmail/cf/cf/openbsd-proto.mc @@ -17,13 +17,16 @@ divert(-1) # divert(0)dnl -VERSIONID(`@(#)openbsd-proto.mc $Revision: 1.4 $') +VERSIONID(`@(#)openbsd-proto.mc $Revision: 1.5 $') OSTYPE(openbsd) FEATURE(nouucp, `reject') +FEATURE(`no_default_msa') MAILER(local) MAILER(smtp) DAEMON_OPTIONS(`Family=inet, address=0.0.0.0, Name=MTA')dnl DAEMON_OPTIONS(`Family=inet6, address=::, Name=MTA6, M=O')dnl +DAEMON_OPTIONS(`Family=inet, address=0.0.0.0, Port=587, Name=MSA, M=E') +DAEMON_OPTIONS(`Family=inet6, address=::, Port=587, Name=MSA6, M=O, M=E') dnl dnl Some broken nameservers will return SERVFAIL (a temporary failure) dnl on T_AAAA (IPv6) lookups. |