38 lines
896 B
Plaintext
38 lines
896 B
Plaintext
# 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
|
|
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
|
|
}
|
|
mailbox "Sent Messages" {
|
|
special_use = \Sent
|
|
}
|
|
|
|
# If you have a virtual "All messages" mailbox:
|
|
mailbox virtual/All {
|
|
special_use = \All
|
|
comment = All messages
|
|
}
|
|
|
|
# If you have a virtual "Flagged" mailbox:
|
|
mailbox virtual/Flagged {
|
|
special_use = \Flagged
|
|
comment = Flagged messages
|
|
}
|
|
}
|