20-imap.conf.erb 2.3 KB

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