| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- protocols = imap pop3
- listen = *, ::
- base_dir = /var/run/dovecot/
- login_greeting = Mail Delivery Agent
- !include conf.d/*.conf
- !include_try conf.d/domains/*.conf
- namespace {
- type = private
- separator = /
- inbox = yes
- list = yes
- mailbox Archive {
- auto = subscribe
- special_use = \Archive
- }
- mailbox Drafts {
- auto = subscribe
- special_use = \Drafts
- }
- mailbox Trash {
- auto = subscribe
- special_use = \Trash
- }
- mailbox "Deleted Messages" {
- auto = no
- special_use = \Trash
- }
- mailbox Spam {
- auto = subscribe
- special_use = \Junk
- }
- mailbox Junk {
- auto = no
- special_use = \Junk
- }
- mailbox Sent {
- auto = subscribe
- special_use = \Sent
- }
- mailbox "Sent Mail" {
- auto = no
- special_use = \Sent
- }
-
- mailbox "Sent Messages" {
- auto = no
- special_use = \Sent
- }
- }
|