summaryrefslogtreecommitdiff
path: root/gnu/usr.sbin
diff options
context:
space:
mode:
authoritojun <itojun@NetBSD.org>2001-01-15 17:49:25 +0000
committeritojun <itojun@NetBSD.org>2001-01-15 17:49:25 +0000
commitef39bb4e09b752d4e06b968e26f3efade438771f (patch)
tree71aacdb8b1d6e5d8247158a0ef9df64946b725e1 /gnu/usr.sbin
parent880b841888b19ac73d9bd2ab28493cd774b1ea95 (diff)
pull DaemonPortOptions modifier for "optional address", from
8.12.x change (Modifiers=O). this will let us use the same sendmail.cf file on IPv4/v6, and IPv4-only kernels. (we do not really need netbsd-proto-IPv4only.cf any more)
Diffstat (limited to 'gnu/usr.sbin')
-rw-r--r--gnu/usr.sbin/sendmail/cf/cf/netbsd-proto.mc7
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/usr.sbin/sendmail/cf/cf/netbsd-proto.mc b/gnu/usr.sbin/sendmail/cf/cf/netbsd-proto.mc
index a8ae737a99b..1e2433a249f 100644
--- a/gnu/usr.sbin/sendmail/cf/cf/netbsd-proto.mc
+++ b/gnu/usr.sbin/sendmail/cf/cf/netbsd-proto.mc
@@ -1,4 +1,4 @@
-# $NetBSD: netbsd-proto.mc,v 1.7 2000/08/25 02:54:29 hubertf Exp $
+# $NetBSD: netbsd-proto.mc,v 1.8 2001/01/15 17:49:26 itojun Exp $
#
# This is the prototype file for a configuration that supports SMTP
@@ -8,6 +8,7 @@
# The path is relative to ${CFDIR}/cf, see Makefile:
include(`../../../../usr.sbin/sendmail/cf/cf/netbsd-proto-IPv4only.mc')
-# Enable IPv6:
+# Enable IPv6. IPv6 is marked as optional so the configuration file
+# can be used on IPV4-only kernel as well.
DAEMON_OPTIONS(`Family=inet, address=0.0.0.0, Name=MTA')dnl
-DAEMON_OPTIONS(`Family=inet6, address=::, Name=MTA6')dnl
+DAEMON_OPTIONS(`Family=inet6, address=::, Name=MTA6, Modifiers=O')dnl