| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- protocols = imap pop3
- listen = *, ::
- base_dir = /run/dovecot/
- login_greeting = Mail Delivery Agent
- !include conf.d/*.conf
- !include_try conf.d/domains/*.conf
- service stats {
- unix_listener stats-writer {
- group = mail
- mode = 0660
- user = dovecot
- }
- }
- 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
- }
- }
|