From: Timo Sirainen Date: Mon, 1 Jun 2009 00:41:49 +0000 (-0400) Subject: dovecot-master-example.conf: Added IPv6 listeners. X-Git-Tag: 2.0.alpha1~636 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f35134eaed51b0b10d0b44feaef20cf60bc82e53;p=thirdparty%2Fdovecot%2Fcore.git dovecot-master-example.conf: Added IPv6 listeners. --HG-- branch : HEAD --- diff --git a/dovecot-master-example.conf b/dovecot-master-example.conf index 10620d1b7b..68ade5226e 100644 --- a/dovecot-master-example.conf +++ b/dovecot-master-example.conf @@ -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 }