~ubuntu-branches/ubuntu/wily/dovecot/wily

« back to all changes in this revision

Viewing changes to doc/wiki/MailboxSettings.txt

  • Committer: Package Import Robot
  • Author(s): Jaldhar H. Vyas
  • Date: 2013-09-09 00:57:32 UTC
  • mfrom: (1.13.11)
  • mto: (4.8.5 experimental) (1.16.1)
  • mto: This revision was merged to the branch mainline in revision 97.
  • Revision ID: package-import@ubuntu.com-20130909005732-dn1eell8srqbhh0e
Tags: upstream-2.2.5
ImportĀ upstreamĀ versionĀ 2.2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Mailbox settings
 
2
================
 
3
 
 
4
Since Dovecot v2.1 one can assign SPECIAL-USE RFC 6154
 
5
[http://www.faqs.org/rfcs/rfc6154.html] tags and specify, which mailboxes to
 
6
create and/or subscribe to automatically.
 
7
 
 
8
The autocreated mailboxes are created lazily to disk only when accessed for the
 
9
first time. The autosubscribed mailboxes aren't written to subscriptions file,
 
10
unless SUBSCRIBE command is explicitly used for them.
 
11
 
 
12
---%<-------------------------------------------------------------------------
 
13
namespace inbox {
 
14
  #prefix = INBOX. # the namespace prefix isn't added again to the mailbox
 
15
names.
 
16
  # ...
 
17
 
 
18
  mailbox Trash {
 
19
    auto = no
 
20
    special_use = \Trash
 
21
  }
 
22
  mailbox Drafts {
 
23
    auto = no
 
24
    special_use = \Drafts
 
25
  }
 
26
  mailbox Sent {
 
27
    auto = subscribe # autocreate, autosubscribe
 
28
    special_use = \Sent
 
29
  }
 
30
  mailbox Spam {
 
31
    auto = create # autocreate, but don't autosubscribe
 
32
    special_use = \Junk
 
33
  }
 
34
  mailbox virtual/All { # if you have a virtual "All messages" mailbox
 
35
    auto = no
 
36
    special_use = \All
 
37
  }
 
38
}
 
39
---%<-------------------------------------------------------------------------
 
40
 
 
41
(This file was created from the wiki on 2013-08-05 04:42)