From: Timo Sirainen Date: Fri, 24 Apr 2009 00:01:18 +0000 (-0400) Subject: Added example dovecot-master.conf. X-Git-Tag: 2.0.alpha1~892 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2d177f6d6638f020cd4762237a3d0ccf7efcaf66;p=thirdparty%2Fdovecot%2Fcore.git Added example dovecot-master.conf. --HG-- branch : HEAD --- diff --git a/dovecot-example.conf b/dovecot-example.conf index b1b6366c1e..e90d7c9b3f 100644 --- a/dovecot-example.conf +++ b/dovecot-example.conf @@ -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 index 0000000000..0d40716d11 --- /dev/null +++ b/dovecot-master-example.conf @@ -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 +# } +#}