]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
dovecot-master-example.conf: Added IPv6 listeners.
authorTimo Sirainen <tss@iki.fi>
Mon, 1 Jun 2009 00:41:49 +0000 (20:41 -0400)
committerTimo Sirainen <tss@iki.fi>
Mon, 1 Jun 2009 00:41:49 +0000 (20:41 -0400)
--HG--
branch : HEAD

dovecot-master-example.conf

index 10620d1b7b233fdc6ad1cf8cc84c0d0358346683..68ade5226ec94bc165e7922398b588571185d0c7 100644 (file)
@@ -63,6 +63,7 @@ service imap-login {
   type = auth-source
   executable = imap-login
 
+  # IPv4
   inet_listener {
     port = 143
   }
@@ -71,6 +72,17 @@ service imap-login {
     ssl = yes
   }
 
+  # IPv6
+  inet_listener {
+    address = ::
+    port = 143
+  }
+  inet_listener {
+    address = ::
+    port = 993
+    ssl = yes
+  }
+
   user = dovecot
   vsz_limit = 64
   client_limit = 1
@@ -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
   }