dovecot.conf (698B)
1 ssl = required 2 3 ssl_cert = </etc/ssl/mx.dalliard.ch.crt 4 ssl_key = </etc/ssl/private/mx.dalliard.ch.key 5 ssl_dh = </etc/dovecot/dh.pem 6 7 mail_location = maildir:~/mail 8 9 protocols = imap lmtp 10 11 protocol lmtp { 12 mail_plugins = $mail_plugins sieve 13 } 14 protocol imap { 15 imap_idle_notify_interval = 0 16 } 17 18 plugin { 19 sieve_after = /etc/dovecot/sieve/default.sieve 20 sieve_extensions = +editheader 21 } 22 23 namespace inbox { 24 mailbox Drafts { 25 special_use = \Drafts 26 } 27 mailbox Sent { 28 autoexpunge = 21d 29 special_use = \Sent 30 } 31 mailbox Trash { 32 autoexpunge = 21d 33 special_use = \Trash 34 } 35 mailbox Junk { 36 auto = create 37 autoexpunge = 21d 38 special_use = \Junk 39 } 40 mailbox Archive { 41 special_use = \Archive 42 } 43 }