20-managesieve.conf 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. ##
  2. ## ManageSieve specific settings
  3. ##
  4. # Uncomment to enable managesieve protocol:
  5. protocols = $protocols sieve
  6. # Service definitions
  7. service managesieve-login {
  8. inet_listener sieve {
  9. port = 4190
  10. }
  11. #inet_listener sieve_deprecated {
  12. # port = 2000
  13. #}
  14. # Number of connections to handle before starting a new process. Typically
  15. # the only useful values are 0 (unlimited) or 1. 1 is more secure, but 0
  16. # is faster. <doc/wiki/LoginProcess.txt>
  17. #service_count = 1
  18. # Number of processes to always keep waiting for more connections.
  19. #process_min_avail = 0
  20. # If you set service_count=0, you probably need to grow this.
  21. #vsz_limit = 64M
  22. }
  23. #service managesieve {
  24. # Max. number of ManageSieve processes (connections)
  25. #process_limit = 1024
  26. #}
  27. # Service configuration
  28. protocol sieve {
  29. # Maximum ManageSieve command line length in bytes. ManageSieve usually does
  30. # not involve overly long command lines, so this setting will not normally
  31. # need adjustment
  32. managesieve_max_line_length = 65536
  33. # Maximum number of ManageSieve connections allowed for a user from each IP
  34. # address.
  35. # NOTE: The username is compared case-sensitively.
  36. #mail_max_userip_connections = 10
  37. # Space separated list of plugins to load (none known to be useful so far).
  38. # Do NOT try to load IMAP plugins here.
  39. #mail_plugins =
  40. # MANAGESIEVE logout format string:
  41. # %i - total number of bytes read from client
  42. # %o - total number of bytes sent to client
  43. # %{put_bytes} - Number of bytes saved using PUTSCRIPT command
  44. # %{put_count} - Number of scripts saved using PUTSCRIPT command
  45. # %{get_bytes} - Number of bytes read using GETCRIPT command
  46. # %{get_count} - Number of scripts read using GETSCRIPT command
  47. # %{get_bytes} - Number of bytes processed using CHECKSCRIPT command
  48. # %{get_count} - Number of scripts checked using CHECKSCRIPT command
  49. # %{deleted_count} - Number of scripts deleted using DELETESCRIPT command
  50. # %{renamed_count} - Number of scripts renamed using RENAMESCRIPT command
  51. #managesieve_logout_format = bytes=%i/%o
  52. # To fool ManageSieve clients that are focused on CMU's timesieved you can
  53. # specify the IMPLEMENTATION capability that Dovecot reports to clients.
  54. # For example: 'Cyrus timsieved v2.2.13'
  55. managesieve_implementation_string = Dovecot Pigeonhole
  56. # Explicitly specify the SIEVE and NOTIFY capability reported by the server
  57. # before login. If left unassigned these will be reported dynamically
  58. # according to what the Sieve interpreter supports by default (after login
  59. # this may differ depending on the user).
  60. #managesieve_sieve_capability =
  61. #managesieve_notify_capability =
  62. # The maximum number of compile errors that are returned to the client upon
  63. # script upload or script verification.
  64. #managesieve_max_compile_errors = 5
  65. # Refer to 90-sieve.conf for script quota configuration and configuration of
  66. # Sieve execution limits.
  67. #log_path = /var/log/dovecot-sieve-errors.log
  68. #info_log_path = /var/log/dovecot-sieve.log
  69. }