diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2013-12-15 23:49:38 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-06-07 02:51:27 +0200 |
commit | e4c74a8f95ea5a77e4d65b9b0952ff48a0564161 (patch) | |
tree | c4558514a4740631a7a0110e2f1e8aab1b80b03c /roles/IMAP/files/etc/dovecot/conf.d/15-mailboxes.conf | |
parent | 7fe517c328906d0f962c3dc33d7bc773f2348bb4 (diff) |
Make the virtual mailboxes visible under RoundCube.
RoundCubes lists subscribed mailboxes only (determined using
LIST-EXTENDED by default); also, it seems to ignore new subscriptions to
mailboxes not listed by the LIST command.
Diffstat (limited to 'roles/IMAP/files/etc/dovecot/conf.d/15-mailboxes.conf')
-rw-r--r-- | roles/IMAP/files/etc/dovecot/conf.d/15-mailboxes.conf | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/roles/IMAP/files/etc/dovecot/conf.d/15-mailboxes.conf b/roles/IMAP/files/etc/dovecot/conf.d/15-mailboxes.conf index e110f28..6aa5c22 100644 --- a/roles/IMAP/files/etc/dovecot/conf.d/15-mailboxes.conf +++ b/roles/IMAP/files/etc/dovecot/conf.d/15-mailboxes.conf @@ -1,45 +1,45 @@ ## ## Mailbox definitions ## # NOTE: Assumes "namespace inbox" has been defined in 10-mail.conf. namespace inbox { #mailbox name { # auto=create will automatically create this mailbox. # auto=subscribe will both create and subscribe to the mailbox. #auto = no # Space separated list of IMAP SPECIAL-USE attributes as specified by # RFC 6154: \All \Archive \Drafts \Flagged \Junk \Sent \Trash #special_use = #} # These mailboxes are widely used and could perhaps be created automatically: - mailbox TRASH { + mailbox Trash { auto = create special_use = \Trash } - mailbox DRAFTS { + mailbox Drafts { auto = create special_use = \Drafts } - mailbox SENT { + mailbox Sent { auto = subscribe special_use = \Sent } - mailbox SPAM { + mailbox Junk { auto = create special_use = \Junk } # If you have a virtual "All messages" mailbox: mailbox virtual/All { special_use = \All } # If you have a virtual "Flagged" mailbox: mailbox virtual/Flagged { special_use = \Flagged } } |