dovecot-2.0: dovecot-master-example.conf: Added IPv6 listeners.

dovecot at dovecot.org dovecot at dovecot.org
Mon Jun 1 04:27:13 EEST 2009


details:   http://hg.dovecot.org/dovecot-2.0/rev/f4eca3bbd4ac
changeset: 9416:f4eca3bbd4ac
user:      Timo Sirainen <tss at iki.fi>
date:      Sun May 31 20:41:49 2009 -0400
description:
dovecot-master-example.conf: Added IPv6 listeners.

diffstat:

1 file changed, 24 insertions(+)
dovecot-master-example.conf |   24 ++++++++++++++++++++++++

diffs (49 lines):

diff -r dca52f948452 -r f4eca3bbd4ac dovecot-master-example.conf
--- a/dovecot-master-example.conf	Sun May 31 20:14:59 2009 -0400
+++ b/dovecot-master-example.conf	Sun May 31 20:41:49 2009 -0400
@@ -63,10 +63,22 @@ service imap-login {
   type = auth-source
   executable = imap-login
 
+  # IPv4
   inet_listener {
     port = 143
   }
   inet_listener {
+    port = 993
+    ssl = yes
+  }
+
+  # IPv6
+  inet_listener {
+    address = ::
+    port = 143
+  }
+  inet_listener {
+    address = ::
     port = 993
     ssl = yes
   }
@@ -86,10 +98,22 @@ service pop3-login {
   type = auth-source
   executable = pop3-login
 
+  # IPv4
   inet_listener {
     port = 110
   }
   inet_listener {
+    port = 995
+    ssl = yes
+  }
+
+  # IPv6
+  inet_listener {
+    address = ::
+    port = 110
+  }
+  inet_listener {
+    address = ::
     port = 995
     ssl = yes
   }


More information about the dovecot-cvs mailing list