20-pop3.conf.erb 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. ##
  2. ## POP3 specific settings
  3. ##
  4. protocol pop3 {
  5. # Don't try to set mails non-recent or seen with POP3 sessions. This is
  6. # mostly intended to reduce disk I/O. With maildir it doesn't move files
  7. # from new/ to cur/, with mbox it doesn't write Status-header.
  8. #pop3_no_flag_updates = no
  9. # Support LAST command which exists in old POP3 specs, but has been removed
  10. # from new ones. Some clients still wish to use this though. Enabling this
  11. # makes RSET command clear all \Seen flags from messages.
  12. #pop3_enable_last = no
  13. # If mail has X-UIDL header, use it as the mail's UIDL.
  14. #pop3_reuse_xuidl = no
  15. # Keep the mailbox locked for the entire POP3 session.
  16. #pop3_lock_session = no
  17. # POP3 requires message sizes to be listed as if they had CR+LF linefeeds.
  18. # Many POP3 servers violate this by returning the sizes with LF linefeeds,
  19. # because it's faster to get. When this setting is enabled, Dovecot still
  20. # tries to do the right thing first, but if that requires opening the
  21. # message, it fallbacks to the easier (but incorrect) size.
  22. #pop3_fast_size_lookups = no
  23. # POP3 UIDL (unique mail identifier) format to use. You can use following
  24. # variables, along with the variable modifiers described in
  25. # doc/wiki/Variables.txt (e.g. %Uf for the filename in uppercase)
  26. #
  27. # %v - Mailbox's IMAP UIDVALIDITY
  28. # %u - Mail's IMAP UID
  29. # %m - MD5 sum of the mailbox headers in hex (mbox only)
  30. # %f - filename (maildir only)
  31. # %g - Mail's GUID
  32. #
  33. # If you want UIDL compatibility with other POP3 servers, use:
  34. # UW's ipop3d : %08Xv%08Xu
  35. # Courier : %f or %v-%u (both might be used simultaneosly)
  36. # Cyrus (<= 2.1.3) : %u
  37. # Cyrus (>= 2.1.4) : %v.%u
  38. # Dovecot v0.99.x : %v.%u
  39. # tpop3d : %Mf
  40. #
  41. # Note that Outlook 2003 seems to have problems with %v.%u format which was
  42. # Dovecot's default, so if you're building a new server it would be a good
  43. # idea to change this. %08Xu%08Xv should be pretty fail-safe.
  44. #
  45. #pop3_uidl_format = %08Xu%08Xv
  46. # Permanently save UIDLs sent to POP3 clients, so pop3_uidl_format changes
  47. # won't change those UIDLs. Currently this works only with Maildir.
  48. #pop3_save_uidl = no
  49. # POP3 logout format string:
  50. # %i - total number of bytes read from client
  51. # %o - total number of bytes sent to client
  52. # %t - number of TOP commands
  53. # %p - number of bytes sent to client as a result of TOP command
  54. # %r - number of RETR commands
  55. # %b - number of bytes sent to client as a result of RETR command
  56. # %d - number of deleted messages
  57. # %m - number of messages (before deletion)
  58. # %s - mailbox size in bytes (before deletion)
  59. # %u - old/new UIDL hash. may help finding out if UIDLs changed unexpectedly
  60. #pop3_logout_format = top=%t/%p, retr=%r/%b, del=%d/%m, size=%s
  61. # Maximum number of POP3 connections allowed for a user from each IP address.
  62. # NOTE: The username is compared case-sensitively.
  63. #mail_max_userip_connections = 10
  64. # Space separated list of plugins to load (default is global mail_plugins).
  65. #mail_plugins = $mail_plugins
  66. # Workarounds for various client bugs:
  67. # outlook-no-nuls:
  68. # Outlook and Outlook Express hang if mails contain NUL characters.
  69. # This setting replaces them with 0x80 character.
  70. # oe-ns-eoh:
  71. # Outlook Express and Netscape Mail breaks if end of headers-line is
  72. # missing. This option simply sends it if it's missing.
  73. # The list is space-separated.
  74. #pop3_client_workarounds =
  75. }