Bump max connections
[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   mail_max_userip_connections = 50
15
16   # Space separated list of plugins to load (default is global mail_plugins).
17   #mail_plugins = $mail_plugins
18
19   # IMAP logout format string:
20   #  %i - total number of bytes read from client
21   #  %o - total number of bytes sent to client
22   #imap_logout_format = bytes=%i/%o
23
24   # Override the IMAP CAPABILITY response. If the value begins with '+',
25   # add the given capabilities on top of the defaults (e.g. +XFOO XBAR).
26   #imap_capability = 
27
28   # How long to wait between "OK Still here" notifications when client is
29   # IDLEing.
30   #imap_idle_notify_interval = 2 mins
31
32   # ID field names and values to send to clients. Using * as the value makes
33   # Dovecot use the default value. The following fields have default values
34   # currently: name, version, os, os-version, support-url, support-email.
35   #imap_id_send = 
36
37   # ID fields sent by client to log. * means everything.
38   #imap_id_log =
39
40   # Workarounds for various client bugs:
41   #   delay-newmail:
42   #     Send EXISTS/RECENT new mail notifications only when replying to NOOP
43   #     and CHECK commands. Some clients ignore them otherwise, for example OSX
44   #     Mail (<v2.1). Outlook Express breaks more badly though, without this it
45   #     may show user "Message no longer in server" errors. Note that OE6 still
46   #     breaks even with this workaround if synchronization is set to
47   #     "Headers Only".
48   #   tb-extra-mailbox-sep:
49   #     With mbox storage a mailbox can contain either mails or submailboxes,
50   #     but not both. Thunderbird separates these two by forcing server to
51   #     accept '/' suffix in mailbox names in subscriptions list.
52   #   tb-lsub-flags:
53   #     Show \Noselect flags for LSUB replies with LAYOUT=fs (e.g. mbox).
54   #     This makes Thunderbird realize they aren't selectable and show them
55   #     greyed out, instead of only later giving "not selectable" popup error.
56   #
57   # The list is space-separated.
58   #imap_client_workarounds = 
59 }