84ddb91797aa894f258033d6e5674c1885044c58Timo Sirainen##
3d9db880fa0ad8fc3f35b07d1e694f82b1cc4ef4Timo Sirainen## Mailbox definitions
3d9db880fa0ad8fc3f35b07d1e694f82b1cc4ef4Timo Sirainen##
3d9db880fa0ad8fc3f35b07d1e694f82b1cc4ef4Timo Sirainen
3d9db880fa0ad8fc3f35b07d1e694f82b1cc4ef4Timo Sirainen# Each mailbox is specified in a separate mailbox section. The section name
3d9db880fa0ad8fc3f35b07d1e694f82b1cc4ef4Timo Sirainen# specifies the mailbox name. If it has spaces, you can put the name
3d9db880fa0ad8fc3f35b07d1e694f82b1cc4ef4Timo Sirainen# "in quotes". These sections can contain the following mailbox settings:
3d9db880fa0ad8fc3f35b07d1e694f82b1cc4ef4Timo Sirainen#
3d9db880fa0ad8fc3f35b07d1e694f82b1cc4ef4Timo Sirainen# auto:
3d9db880fa0ad8fc3f35b07d1e694f82b1cc4ef4Timo Sirainen# Indicates whether the mailbox with this name is automatically created
3d9db880fa0ad8fc3f35b07d1e694f82b1cc4ef4Timo Sirainen# implicitly when it is first accessed. The user can also be automatically
3d9db880fa0ad8fc3f35b07d1e694f82b1cc4ef4Timo Sirainen# subscribed to the mailbox after creation. The following values are
3d9db880fa0ad8fc3f35b07d1e694f82b1cc4ef4Timo Sirainen# defined for this setting:
3d9db880fa0ad8fc3f35b07d1e694f82b1cc4ef4Timo Sirainen#
3d9db880fa0ad8fc3f35b07d1e694f82b1cc4ef4Timo Sirainen# no - Never created automatically.
3d9db880fa0ad8fc3f35b07d1e694f82b1cc4ef4Timo Sirainen# create - Automatically created, but no automatic subscription.
3d9db880fa0ad8fc3f35b07d1e694f82b1cc4ef4Timo Sirainen# subscribe - Automatically created and subscribed.
3d9db880fa0ad8fc3f35b07d1e694f82b1cc4ef4Timo Sirainen#
3d9db880fa0ad8fc3f35b07d1e694f82b1cc4ef4Timo Sirainen# special_use:
3d9db880fa0ad8fc3f35b07d1e694f82b1cc4ef4Timo Sirainen# A space-separated list of SPECIAL-USE flags (RFC 6154) to use for the
3d9db880fa0ad8fc3f35b07d1e694f82b1cc4ef4Timo Sirainen# mailbox. There are no validity checks, so you could specify anything
# you want in here, but it's not a good idea to use flags other than the
# standard ones specified in the RFC:
#
# \All - This (virtual) mailbox presents all messages in the
# user's message store.
# \Archive - This mailbox is used to archive messages.
# \Drafts - This mailbox is used to hold draft messages.
# \Flagged - This (virtual) mailbox presents all messages in the
# user's message store marked with the IMAP \Flagged flag.
# \Junk - This mailbox is where messages deemed to be junk mail
# are held.
# \Sent - This mailbox is used to hold copies of messages that
# have been sent.
# \Trash - This mailbox is used to hold messages that have been
# deleted.
#
# comment:
# Defines a default comment or note associated with the mailbox. This
# value is accessible through the IMAP METADATA mailbox entries
# "/shared/comment" and "/private/comment". Users with sufficient
# privileges can override the default value for entries with a custom
# value.
# NOTE: Assumes "namespace inbox" has been defined in 10-mail.conf.
namespace inbox {
# 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
# comment = All my messages
#}
# If you have a virtual "Flagged" mailbox:
#mailbox virtual/Flagged {
# special_use = \Flagged
# comment = All my flagged messages
#}
}