blob: e110f28abbd8264a611f3dcc7563a773dace0b91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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 {
auto = create
special_use = \Trash
}
mailbox DRAFTS {
auto = create
special_use = \Drafts
}
mailbox SENT {
auto = subscribe
special_use = \Sent
}
mailbox SPAM {
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
}
}
|