diff options
author | Xiao Pan <gky44px1999@gmail.com> | 2024-04-08 10:32:09 +0000 |
---|---|---|
committer | Xiao Pan <gky44px1999@gmail.com> | 2024-04-08 10:32:09 +0000 |
commit | 7f64ae790c90e7922869aa9cd9d6a18a561b9715 (patch) | |
tree | d5a15b41cd9e7c2e55b1862f8854644c50f0866c /etc | |
parent | db31f5f16744cb937fae20127bd62b0cbb208a04 (diff) |
feat: auto subscribe mailboxes, remove unneeded mailbox
Diffstat (limited to 'etc')
-rw-r--r-- | etc/dovecot/conf.d/15-mailboxes.conf | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/etc/dovecot/conf.d/15-mailboxes.conf b/etc/dovecot/conf.d/15-mailboxes.conf index 71076d48..95f99394 100644 --- a/etc/dovecot/conf.d/15-mailboxes.conf +++ b/etc/dovecot/conf.d/15-mailboxes.conf @@ -49,21 +49,30 @@ namespace inbox { # These mailboxes are widely used and could perhaps be created automatically: mailbox Drafts { special_use = \Drafts + auto = subscribe } mailbox Junk { special_use = \Junk + auto = subscribe } mailbox Trash { special_use = \Trash + auto = subscribe } # For \Sent mailboxes there are two widely used names. We'll mark both of # them as \Sent. User typically deletes one of them if duplicates are created. mailbox Sent { special_use = \Sent + auto = subscribe } - mailbox "Sent Messages" { - special_use = \Sent + #mailbox "Sent Messages" { + # special_use = \Sent + #} + + mailbox Archive { + special_use = \Archive + auto = subscribe } # If you have a virtual "All messages" mailbox: |