dovecot-2.0: dovecot-master-example.conf updated.

dovecot at dovecot.org dovecot at dovecot.org
Tue May 5 22:28:33 EEST 2009


details:   http://hg.dovecot.org/dovecot-2.0/rev/e91bca10d5a1
changeset: 9228:e91bca10d5a1
user:      Timo Sirainen <tss at iki.fi>
date:      Tue May 05 15:28:26 2009 -0400
description:
dovecot-master-example.conf updated.

diffstat:

1 file changed, 32 insertions(+), 6 deletions(-)
dovecot-master-example.conf |   38 ++++++++++++++++++++++++++++++++------

diffs (71 lines):

diff -r f155917f1615 -r e91bca10d5a1 dovecot-master-example.conf
--- a/dovecot-master-example.conf	Tue May 05 15:28:16 2009 -0400
+++ b/dovecot-master-example.conf	Tue May 05 15:28:26 2009 -0400
@@ -1,8 +1,7 @@ service config {
 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,18 +43,45 @@ 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
 }
 
 service imap {
   type = auth-destination
   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 {


More information about the dovecot-cvs mailing list