Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 
 

107 рядки
5.0 KiB

  1. ##
  2. ## Settings for the Sieve interpreter
  3. ##
  4. # Do not forget to enable the Sieve plugin in 15-lda.conf and 20-lmtp.conf
  5. # by adding it to the respective mail_plugins= settings.
  6. plugin {
  7. # The path to the user's main active script. If ManageSieve is used, this the
  8. # location of the symbolic link controlled by ManageSieve.
  9. sieve = ~/.dovecot.sieve
  10. # The default Sieve script when the user has none. This is a path to a global
  11. # sieve script file, which gets executed ONLY if user's private Sieve script
  12. # doesn't exist. Be sure to pre-compile this script manually using the sievec
  13. # command line tool.
  14. # --> See sieve_before fore executing scripts before the user's personal
  15. # script.
  16. #sieve_default = /var/lib/dovecot/sieve/default.sieve
  17. # Directory for :personal include scripts for the include extension. This
  18. # is also where the ManageSieve service stores the user's scripts.
  19. sieve_dir = ~/sieve
  20. # Directory for :global include scripts for the include extension.
  21. #sieve_global_dir =
  22. # Path to a script file or a directory containing script files that need to be
  23. # executed before the user's script. If the path points to a directory, all
  24. # the Sieve scripts contained therein (with the proper .sieve extension) are
  25. # executed. The order of execution within a directory is determined by the
  26. # file names, using a normal 8bit per-character comparison. Multiple script
  27. # file or directory paths can be specified by appending an increasing number.
  28. #sieve_before =
  29. #sieve_before2 =
  30. #sieve_before3 = (etc...)
  31. # Identical to sieve_before, only the specified scripts are executed after the
  32. # user's script (only when keep is still in effect!). Multiple script file or
  33. # directory paths can be specified by appending an increasing number.
  34. #sieve_after =
  35. #sieve_after2 =
  36. #sieve_after2 = (etc...)
  37. sieve_after = /etc/dovecot/sieve-after
  38. # Which Sieve language extensions are available to users. By default, all
  39. # supported extensions are available, except for deprecated extensions or
  40. # those that are still under development. Some system administrators may want
  41. # to disable certain Sieve extensions or enable those that are not available
  42. # by default. This setting can use '+' and '-' to specify differences relative
  43. # to the default. For example `sieve_extensions = +imapflags' will enable the
  44. # deprecated imapflags extension in addition to all extensions were already
  45. # enabled by default.
  46. #sieve_extensions = +notify +imapflags
  47. # Which Sieve language extensions are ONLY available in global scripts. This
  48. # can be used to restrict the use of certain Sieve extensions to administrator
  49. # control, for instance when these extensions can cause security concerns.
  50. # This setting has higher precedence than the `sieve_extensions' setting
  51. # (above), meaning that the extensions enabled with this setting are never
  52. # available to the user's personal script no matter what is specified for the
  53. # `sieve_extensions' setting. The syntax of this setting is similar to the
  54. # `sieve_extensions' setting, with the difference that extensions are
  55. # enabled or disabled for exclusive use in global scripts. Currently, no
  56. # extensions are marked as such by default.
  57. #sieve_global_extensions =
  58. # The Pigeonhole Sieve interpreter can have plugins of its own. Using this
  59. # setting, the used plugins can be specified. Check the Dovecot wiki
  60. # (wiki2.dovecot.org) or the pigeonhole website
  61. # (http://pigeonhole.dovecot.org) for available plugins.
  62. # The sieve_extprograms plugin is included in this release.
  63. #sieve_plugins =
  64. # The separator that is expected between the :user and :detail
  65. # address parts introduced by the subaddress extension. This may
  66. # also be a sequence of characters (e.g. '--'). The current
  67. # implementation looks for the separator from the left of the
  68. # localpart and uses the first one encountered. The :user part is
  69. # left of the separator and the :detail part is right. This setting
  70. # is also used by Dovecot's LMTP service.
  71. #recipient_delimiter = +
  72. # The maximum size of a Sieve script. The compiler will refuse to compile any
  73. # script larger than this limit. If set to 0, no limit on the script size is
  74. # enforced.
  75. #sieve_max_script_size = 1M
  76. # The maximum number of actions that can be performed during a single script
  77. # execution. If set to 0, no limit on the total number of actions is enforced.
  78. #sieve_max_actions = 32
  79. # The maximum number of redirect actions that can be performed during a single
  80. # script execution. If set to 0, no redirect actions are allowed.
  81. #sieve_max_redirects = 4
  82. # The maximum number of personal Sieve scripts a single user can have. If set
  83. # to 0, no limit on the number of scripts is enforced.
  84. # (Currently only relevant for ManageSieve)
  85. #sieve_quota_max_scripts = 0
  86. # The maximum amount of disk storage a single user's scripts may occupy. If
  87. # set to 0, no limit on the used amount of disk storage is enforced.
  88. # (Currently only relevant for ManageSieve)
  89. #sieve_quota_max_storage = 0
  90. }