dovecot-2.0: Added example dovecot-master.conf.
dovecot at dovecot.org
dovecot at dovecot.org
Wed Apr 29 04:08:54 EEST 2009
details: http://hg.dovecot.org/dovecot-2.0/rev/1cd9808147e3
changeset: 9160:1cd9808147e3
user: Timo Sirainen <tss at iki.fi>
date: Thu Apr 23 20:01:18 2009 -0400
description:
Added example dovecot-master.conf.
diffstat:
2 files changed, 71 insertions(+)
dovecot-example.conf | 1
dovecot-master-example.conf | 70 +++++++++++++++++++++++++++++++++++++++++++
diffs (83 lines):
diff -r 6324a79d3ee1 -r 1cd9808147e3 dovecot-example.conf
--- a/dovecot-example.conf Thu Apr 23 19:53:44 2009 -0400
+++ b/dovecot-example.conf Thu Apr 23 20:01:18 2009 -0400
@@ -1,4 +1,5 @@
## Dovecot configuration file
+!include dovecot-master.conf
# If you're in a hurry, see http://wiki.dovecot.org/QuickConfiguration
diff -r 6324a79d3ee1 -r 1cd9808147e3 dovecot-master-example.conf
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/dovecot-master-example.conf Thu Apr 23 20:01:18 2009 -0400
@@ -0,0 +1,70 @@
+service {
+ type = config
+ executable = /usr/local/bin/doveconf
+ user = dovecot
+ group = dovecot
+ drop_priv_before_exec = yes
+ unix_listener {
+ path = config
+ }
+}
+
+service {
+ type = log
+ executable = log
+ unix_listener {
+ path = log
+ }
+}
+
+service {
+ type = auth
+ executable = dovecot-auth
+
+ # default
+ unix_listener {
+ path = login/auth
+ mode = 0666
+ }
+
+ # postfix smtp-auth
+ unix_listener {
+ path = /var/spool/postfix/private/auth
+ mode = 0666
+ }
+
+ # dovecot LDA
+ unix_listener {
+ path = auth-master
+ mode = 0600
+ }
+}
+
+service {
+ type = auth-source
+ executable = imap-login
+
+ inet_listener {
+ port = 143
+ }
+
+ user = dovecot
+ group = dovecot
+ vsz_limit = 32768
+ client_limit = 1
+ chroot = /usr/local/var/run/dovecot/login
+ auth_dest_service = imap
+}
+
+service {
+ type = auth-destination
+ executable = imap
+}
+
+#service {
+# executable = dovecot-auth -w
+#
+# unix_listener {
+# path = auth-worker
+# }
+#}
More information about the dovecot-cvs
mailing list