Upstream configuration (as of 1:2.0.19-0ubuntu1)
[sysconfig/dovecot.git] / conf.d / 20-imap.conf
1 ##
2 ## IMAP specific settings
3 ##
4
5 protocol imap {
6   # Maximum IMAP command line length. Some clients generate very long command
7   # lines with huge mailboxes, so you may need to raise this if you get
8   # "Too long argument" or "IMAP command line too large" errors often.
9   #imap_max_line_length = 64k
10
11   # Maximum number of IMAP connections allowed for a user from each IP address.
12   # NOTE: The username is compared case-sensitively.
13   #mail_max_userip_connections = 10
14
15   # Space separated list of plugins to load (default is global mail_plugins).
16   #mail_plugins = $mail_plugins
17
18   # IMAP logout format string:
19   #  %i - total number of bytes read from client
20   #  %o - total number of bytes sent to client
21   #imap_logout_format = bytes=%i/%o
22
23   # Override the IMAP CAPABILITY response. If the value begins with '+',
24   # add the given capabilities on top of the defaults (e.g. +XFOO XBAR).
25   #imap_capability = 
26
27   # How long to wait between "OK Still here" notifications when client is
28   # IDLEing.
29   #imap_idle_notify_interval = 2 mins
30
31   # ID field names and values to send to clients. Using * as the value makes
32   # Dovecot use the default value. The following fields have default values
33   # currently: name, version, os, os-version, support-url, support-email.
34   #imap_id_send = 
35
36   # ID fields sent by client to log. * means everything.
37   #imap_id_log =
38
39   # Workarounds for various client bugs:
40   #   delay-newmail:
41   #     Send EXISTS/RECENT new mail notifications only when replying to NOOP
42   #     and CHECK commands. Some clients ignore them otherwise, for example OSX
43   #     Mail (<v2.1). Outlook Express breaks more badly though, without this it
44   #     may show user "Message no longer in server" errors. Note that OE6 still
45   #     breaks even with this workaround if synchronization is set to
46   #     "Headers Only".
47   #   tb-extra-mailbox-sep:
48   #     With mbox storage a mailbox can contain either mails or submailboxes,
49   #     but not both. Thunderbird separates these two by forcing server to
50   #     accept '/' suffix in mailbox names in subscriptions list.
51   #   tb-lsub-flags:
52   #     Show \Noselect flags for LSUB replies with LAYOUT=fs (e.g. mbox).
53   #     This makes Thunderbird realize they aren't selectable and show them
54   #     greyed out, instead of only later giving "not selectable" popup error.
55   #
56   # The list is space-separated.
57   #imap_client_workarounds = 
58 }