dovecot-2.1: example-config: Added example mailboxes.

dovecot at dovecot.org dovecot at dovecot.org
Wed Dec 7 00:49:10 EET 2011


details:   http://hg.dovecot.org/dovecot-2.1/rev/9b9a206395f7
changeset: 13804:9b9a206395f7
user:      Timo Sirainen <tss at iki.fi>
date:      Wed Dec 07 00:48:54 2011 +0200
description:
example-config: Added example mailboxes.

diffstat:

 doc/example-config/conf.d/15-mailboxes.conf |  47 +++++++++++++++++++++++++++++
 doc/example-config/conf.d/Makefile.am       |   1 +
 2 files changed, 48 insertions(+), 0 deletions(-)

diffs (62 lines):

diff -r 2adcc2b87117 -r 9b9a206395f7 doc/example-config/conf.d/15-mailboxes.conf
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/doc/example-config/conf.d/15-mailboxes.conf	Wed Dec 07 00:48:54 2011 +0200
@@ -0,0 +1,47 @@
+##
+## 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 Drafts {
+    special_use = \Drafts
+  }
+  mailbox Junk {
+    special_use = \Junk
+  }
+  mailbox Trash {
+    special_use = \Trash
+  }
+
+  # 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
+  }
+  mailbox "Sent Messages" {
+    special_use = \Sent
+  }
+
+  # 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
+  #}
+}
diff -r 2adcc2b87117 -r 9b9a206395f7 doc/example-config/conf.d/Makefile.am
--- a/doc/example-config/conf.d/Makefile.am	Wed Dec 07 00:30:26 2011 +0200
+++ b/doc/example-config/conf.d/Makefile.am	Wed Dec 07 00:48:54 2011 +0200
@@ -18,6 +18,7 @@
 	10-master.conf \
 	10-ssl.conf \
 	15-lda.conf \
+	15-mailboxes.conf \
 	20-imap.conf \
 	20-lmtp.conf \
 	20-pop3.conf \


More information about the dovecot-cvs mailing list