changeset 9228:e91bca10d5a1 HEAD

dovecot-master-example.conf updated.
author Timo Sirainen <tss@iki.fi>
date Tue, 05 May 2009 15:28:26 -0400
parents f155917f1615
children e5303fd61b5c
files dovecot-master-example.conf
diffstat 1 files changed, 32 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- 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 {
   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 @@
 
   # default
   unix_listener {
-    path = login/auth
+    path = login/default
     mode = 0666
   }
 
@@ -44,12 +43,15 @@
   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 @@
   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
 #