diff options
author | Gregory Neil Shapiro <gshapiro@FreeBSD.org> | 2003-12-24 21:15:09 +0000 |
---|---|---|
committer | Gregory Neil Shapiro <gshapiro@FreeBSD.org> | 2003-12-24 21:15:09 +0000 |
commit | aeebf7b545d315075631666b819ec0a29c3da32e (patch) | |
tree | d3262a68f02aad70accac4c7d43936ad6cfc7eb8 /etc | |
parent | b3378ed911542be4c4fa011eaf2c55ecd075d6dc (diff) | |
download | src-aeebf7b545d315075631666b819ec0a29c3da32e.tar.gz src-aeebf7b545d315075631666b819ec0a29c3da32e.zip |
Enable IPv6 by default but make it optional so it doesn't affect
sites without IPv6.
Submitted by: ume
Obtained from: NetBSD
MFC after: 1 week
Notes
Notes:
svn path=/head/; revision=123820
Diffstat (limited to 'etc')
-rw-r--r-- | etc/sendmail/freebsd.mc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/sendmail/freebsd.mc b/etc/sendmail/freebsd.mc index 600fff710b38..2bb6a1a2c138 100644 --- a/etc/sendmail/freebsd.mc +++ b/etc/sendmail/freebsd.mc @@ -81,9 +81,9 @@ dnl /etc/mail/local-host-names and comment out the second line. dnl define(`confCW_FILE', `-o /etc/mail/sendmail.cw') define(`confCW_FILE', `-o /etc/mail/local-host-names') -dnl Uncomment both of the following lines to listen on IPv6 as well as IPv4 -dnl DAEMON_OPTIONS(`Name=IPv4, Family=inet') -dnl DAEMON_OPTIONS(`Name=IPv6, Family=inet6') +dnl Enable for both IPv4 and IPv6 (optional) +DAEMON_OPTIONS(`Name=IPv4, Family=inet') +DAEMON_OPTIONS(`Name=IPv6, Family=inet6, Modifiers=O') define(`confBIND_OPTS', `WorkAroundBrokenAAAA') define(`confNO_RCPT_ACTION', `add-to-undisclosed') |