Create/configure common default mailboxes
This commit is contained in:
parent
fbad0bf896
commit
c9ad3c2d18
@ -40,43 +40,63 @@ mail_location = mbox:~/mail:INBOX=~/mail/INBOX
|
|||||||
# users can access all the shared mailboxes, assuming they have permissions
|
# users can access all the shared mailboxes, assuming they have permissions
|
||||||
# on filesystem level to do so.
|
# on filesystem level to do so.
|
||||||
namespace inbox {
|
namespace inbox {
|
||||||
# Namespace type: private, shared or public
|
type = private
|
||||||
#type = private
|
|
||||||
|
|
||||||
# Hierarchy separator to use. You should use the same separator for all
|
|
||||||
# namespaces or some clients get confused. '/' is usually a good one.
|
|
||||||
# The default however depends on the underlying mail storage format.
|
|
||||||
#separator =
|
|
||||||
|
|
||||||
# Prefix required to access this namespace. This needs to be different for
|
|
||||||
# all namespaces. For example "Public/".
|
|
||||||
#prefix =
|
|
||||||
|
|
||||||
# Physical location of the mailbox. This is in same format as
|
|
||||||
# mail_location, which is also the default for it.
|
|
||||||
#location =
|
|
||||||
|
|
||||||
# There can be only one INBOX, and this setting defines which namespace
|
|
||||||
# has it.
|
|
||||||
inbox = yes
|
inbox = yes
|
||||||
|
|
||||||
# If namespace is hidden, it's not advertised to clients via NAMESPACE
|
mailbox Drafts {
|
||||||
# extension. You'll most likely also want to set list=no. This is mostly
|
special_use = \Drafts
|
||||||
# useful when converting from another server with different namespaces which
|
auto = subscribe
|
||||||
# you want to deprecate but still keep working. For example you can create
|
}
|
||||||
# hidden namespaces with prefixes "~/mail/", "~%u/mail/" and "mail/".
|
|
||||||
#hidden = no
|
|
||||||
|
|
||||||
# Show the mailboxes under this namespace with LIST command. This makes the
|
mailbox Junk {
|
||||||
# namespace visible for clients that don't support NAMESPACE extension.
|
special_use = \Junk
|
||||||
# "children" value lists child mailboxes, but hides the namespace prefix.
|
auto = create
|
||||||
#list = yes
|
}
|
||||||
|
|
||||||
# Namespace handles its own subscriptions. If set to "no", the parent
|
mailbox spam {
|
||||||
# namespace handles them (empty prefix should always have this as "yes")
|
special_use = \Junk
|
||||||
#subscriptions = yes
|
auto = no
|
||||||
|
}
|
||||||
|
|
||||||
# See 15-mailboxes.conf for definitions of special mailboxes.
|
mailbox Spam {
|
||||||
|
special_use = \Junk
|
||||||
|
auto = no
|
||||||
|
}
|
||||||
|
|
||||||
|
mailbox Trash {
|
||||||
|
special_use = \Trash
|
||||||
|
auto = subscribe
|
||||||
|
}
|
||||||
|
|
||||||
|
mailbox TRASH {
|
||||||
|
special_use = \Trash
|
||||||
|
auto = no
|
||||||
|
}
|
||||||
|
|
||||||
|
mailbox Sent {
|
||||||
|
special_use = \Sent
|
||||||
|
auto = subscribe
|
||||||
|
}
|
||||||
|
|
||||||
|
mailbox "Sent Mail" {
|
||||||
|
special_use = \Sent
|
||||||
|
auto = no
|
||||||
|
}
|
||||||
|
|
||||||
|
mailbox "Sent Messages" {
|
||||||
|
special_use = \Sent
|
||||||
|
auto = no
|
||||||
|
}
|
||||||
|
|
||||||
|
mailbox Archive {
|
||||||
|
special_use = \Archive
|
||||||
|
auto = create
|
||||||
|
}
|
||||||
|
|
||||||
|
mailbox "Archives" {
|
||||||
|
special_use = \Archive
|
||||||
|
auto = no
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# Example shared namespace configuration
|
# Example shared namespace configuration
|
||||||
|
Loading…
x
Reference in New Issue
Block a user