20-imap.conf 2.4 KB

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