]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
Added example dovecot-master.conf.
authorTimo Sirainen <tss@iki.fi>
Fri, 24 Apr 2009 00:01:18 +0000 (20:01 -0400)
committerTimo Sirainen <tss@iki.fi>
Fri, 24 Apr 2009 00:01:18 +0000 (20:01 -0400)
--HG--
branch : HEAD

dovecot-example.conf
dovecot-master-example.conf [new file with mode: 0644]

index b1b6366c1ebc037d8c737d8d228ab8efe16b19bc..e90d7c9b3f556f46ace7435a48a899caf0473247 100644 (file)
@@ -1,4 +1,5 @@
 ## Dovecot configuration file
+!include dovecot-master.conf
 
 # If you're in a hurry, see http://wiki.dovecot.org/QuickConfiguration
 
diff --git a/dovecot-master-example.conf b/dovecot-master-example.conf
new file mode 100644 (file)
index 0000000..0d40716
--- /dev/null
@@ -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
+#  }
+#}