20-pop3.conf 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. # What to do about duplicate UIDLs if they exist?
  50. # allow: Show duplicates to clients.
  51. # rename: Append a temporary -2, -3, etc. counter after the UIDL.
  52. #pop3_uidl_duplicates = allow
  53. # POP3 logout format string:
  54. # %i - total number of bytes read from client
  55. # %o - total number of bytes sent to client
  56. # %t - number of TOP commands
  57. # %p - number of bytes sent to client as a result of TOP command
  58. # %r - number of RETR commands
  59. # %b - number of bytes sent to client as a result of RETR command
  60. # %d - number of deleted messages
  61. # %m - number of messages (before deletion)
  62. # %s - mailbox size in bytes (before deletion)
  63. # %u - old/new UIDL hash. may help finding out if UIDLs changed unexpectedly
  64. #pop3_logout_format = top=%t/%p, retr=%r/%b, del=%d/%m, size=%s
  65. # Maximum number of POP3 connections allowed for a user from each IP address.
  66. # NOTE: The username is compared case-sensitively.
  67. #mail_max_userip_connections = 10
  68. # Space separated list of plugins to load (default is global mail_plugins).
  69. #mail_plugins = $mail_plugins
  70. # Workarounds for various client bugs:
  71. # outlook-no-nuls:
  72. # Outlook and Outlook Express hang if mails contain NUL characters.
  73. # This setting replaces them with 0x80 character.
  74. # oe-ns-eoh:
  75. # Outlook Express and Netscape Mail breaks if end of headers-line is
  76. # missing. This option simply sends it if it's missing.
  77. # The list is space-separated.
  78. #pop3_client_workarounds =
  79. }