]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
dovecot-master-example.conf updated.
authorTimo Sirainen <tss@iki.fi>
Tue, 5 May 2009 19:28:26 +0000 (15:28 -0400)
committerTimo Sirainen <tss@iki.fi>
Tue, 5 May 2009 19:28:26 +0000 (15:28 -0400)
--HG--
branch : HEAD

dovecot-master-example.conf

index 00e05f52b5f9715beeb52499ef2037a0d274670f..5ec63b10b1706a609696b5af492734c04612aead 100644 (file)
@@ -1,8 +1,7 @@
 service config {
   type = config
-  executable = /usr/local/bin/doveconf
+  executable = config
   user = dovecot
-  group = dovecot
   drop_priv_before_exec = yes
   unix_listener {
     path = config
@@ -20,7 +19,7 @@ service auth {
 
   # default
   unix_listener {
-    path = login/auth
+    path = login/default
     mode = 0666
   }
 
@@ -44,12 +43,15 @@ service imap-login {
   inet_listener {
     port = 143
   }
+  inet_listener {
+    port = 993
+    ssl = yes
+  }
 
   user = dovecot
-  group = dovecot
-  vsz_limit = 32768
+  vsz_limit = 65536
   client_limit = 1
-  chroot = /usr/local/var/run/dovecot/login
+  chroot = login
   auth_dest_service = imap
 }
 
@@ -58,6 +60,30 @@ service imap {
   executable = imap
 }
 
+service pop3-login {
+  type = auth-source
+  executable = pop3-login
+
+  inet_listener {
+    port = 110
+  }
+  inet_listener {
+    port = 995
+    ssl = yes
+  }
+
+  user = dovecot
+  vsz_limit = 65536
+  client_limit = 1
+  chroot = login
+  auth_dest_service = pop3
+}
+
+service pop3 {
+  type = auth-destination
+  executable = pop3
+}
+
 #service auth-worker {
 #  executable = dovecot-auth -w
 #