diff options
author | 2001-12-10 20:57:11 +0000 | |
---|---|---|
committer | 2001-12-10 20:57:11 +0000 | |
commit | 34386d90c581674a3a62c58c8331beca218eef36 (patch) | |
tree | 70faf9d7de545059c4be53f741c9e19b7803580a | |
parent | check that server supports v1 for -t rsa1, report from wirth@dfki.de (diff) | |
download | wireguard-openbsd-34386d90c581674a3a62c58c8331beca218eef36.tar.xz wireguard-openbsd-34386d90c581674a3a62c58c8331beca218eef36.zip |
Add FEATURE(`accept_unresolvable_domains')
This should help folks whose IP address is not resolvable.
-rw-r--r-- | gnu/usr.sbin/sendmail/cf/cf/openbsd-localhost.mc | 13 | ||||
-rw-r--r-- | gnu/usr.sbin/sendmail/cf/cf/submit.mc | 1 |
2 files changed, 8 insertions, 6 deletions
diff --git a/gnu/usr.sbin/sendmail/cf/cf/openbsd-localhost.mc b/gnu/usr.sbin/sendmail/cf/cf/openbsd-localhost.mc index eb969242752..986152e0d09 100644 --- a/gnu/usr.sbin/sendmail/cf/cf/openbsd-localhost.mc +++ b/gnu/usr.sbin/sendmail/cf/cf/openbsd-localhost.mc @@ -18,12 +18,13 @@ divert(-1) # divert(0)dnl -VERSIONID(`@(#)openbsd-localhost.mc $Revision: 1.3 $') -OSTYPE(openbsd) -FEATURE(nouucp, `reject') -FEATURE(`no_default_msa') -MAILER(local) -MAILER(smtp) +VERSIONID(`@(#)openbsd-localhost.mc $Revision: 1.4 $') +OSTYPE(openbsd)dnl +FEATURE(nouucp, `reject')dnl +FEATURE(`accept_unresolvable_domains')dnl +FEATURE(`no_default_msa')dnl +MAILER(local)dnl +MAILER(smtp)dnl DAEMON_OPTIONS(`Family=inet, address=127.0.0.1, Name=MTA')dnl DAEMON_OPTIONS(`Family=inet6, address=::1, Name=MTA6, M=O')dnl DAEMON_OPTIONS(`Family=inet, address=127.0.0.1, Port=587, Name=MSA, M=E')dnl diff --git a/gnu/usr.sbin/sendmail/cf/cf/submit.mc b/gnu/usr.sbin/sendmail/cf/cf/submit.mc index 4eee81cfb60..d2c62558153 100644 --- a/gnu/usr.sbin/sendmail/cf/cf/submit.mc +++ b/gnu/usr.sbin/sendmail/cf/cf/submit.mc @@ -20,4 +20,5 @@ define(`confCF_VERSION', `Submit')dnl define(`__OSTYPE__',`')dnl dirty hack to keep proto.m4 from complaining define(`_USE_DECNET_SYNTAX_', `1')dnl support DECnet define(`confBIND_OPTS', `WorkAroundBrokenAAAA')dnl +FEATURE(`accept_unresolvable_domains')dnl FEATURE(`msp')dnl |