Thu, 05 Nov 2009 18:05:07 +0100
Resynchronize with upstream package maintainer version,
including new configuration file (replacing many lines of patch code.)
michael@238 | 1 | ## |
michael@238 | 2 | ## dovecot.conf -- Dovecot server configuration |
michael@238 | 3 | ## |
michael@238 | 4 | |
michael@238 | 5 | protocols = imap |
michael@238 | 6 | |
michael@238 | 7 | protocol imap { |
michael@238 | 8 | listen = 127.0.0.1:143 |
michael@238 | 9 | ssl_listen = 127.0.0.1:993 |
michael@238 | 10 | } |
michael@238 | 11 | |
michael@238 | 12 | ssl = yes |
michael@238 | 13 | ssl_cert_file = @l_prefix@/etc/x509/example-server.crt.pem |
michael@238 | 14 | ssl_key_file = @l_prefix@/etc/x509/example-server.key.pem |
michael@238 | 15 | |
michael@238 | 16 | login_user = @l_musr@ |
michael@238 | 17 | login_processes_count = 4 |
michael@238 | 18 | login_max_processes_count = 128 |
michael@238 | 19 | login_max_connections = 256 |
michael@238 | 20 | |
michael@238 | 21 | mail_location = mbox:~/.mail:INBOX=~/.mail/inbox |
michael@238 | 22 | mail_uid = @l_rusr@ |
michael@238 | 23 | mail_gid = @l_rusr@ |
michael@238 | 24 | mail_privileged_group = @l_rusr@ |
michael@238 | 25 | mbox_read_locks = fcntl |
michael@238 | 26 | mbox_write_locks = fcntl |
michael@238 | 27 | |
michael@238 | 28 | auth_realms = example.com |
michael@238 | 29 | auth_default_realm = |
michael@238 | 30 | auth_verbose = yes |
michael@238 | 31 | disable_plaintext_auth = no |
michael@238 | 32 | |
michael@238 | 33 | auth_debug = no |
michael@238 | 34 | auth_debug_passwords = no |
michael@238 | 35 | mail_debug = no |
michael@238 | 36 | verbose_ssl = no |
michael@238 | 37 | |
michael@238 | 38 | protocol lda { |
michael@238 | 39 | postmaster_address = postmaster |
michael@238 | 40 | } |
michael@238 | 41 | |
michael@238 | 42 | auth default { |
michael@238 | 43 | mechanisms = plain login |
michael@238 | 44 | passdb passwd { |
michael@238 | 45 | } |
michael@238 | 46 | userdb passwd { |
michael@238 | 47 | } |
michael@238 | 48 | socket listen { |
michael@238 | 49 | master { |
michael@238 | 50 | path = @l_prefix@/var/dovecot/run/auth-master |
michael@238 | 51 | mode = 0660 |
michael@238 | 52 | } |
michael@238 | 53 | client { |
michael@238 | 54 | path = @l_prefix@/var/dovecot/run/auth-client |
michael@238 | 55 | mode = 0660 |
michael@238 | 56 | } |
michael@238 | 57 | } |
michael@238 | 58 | } |
michael@238 | 59 |