90-sieve.conf.erb 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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_global_path = /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 is determined by the file names, using a
  26. # normal 8bit per-character comparison.
  27. #sieve_before =
  28. # Identical to sieve_before, only the specified scripts are executed after the
  29. # user's script (only when keep is still in effect!).
  30. #sieve_after =
  31. # Which Sieve language extensions are available to users. By default, all
  32. # supported extensions are available, except for deprecated extensions or
  33. # those that are still under development. Some system administrators may want
  34. # to disable certain Sieve extensions or enable those that are not available
  35. # by default. This setting can use '+' and '-' to specify differences relative
  36. # to the default. For example `sieve_extensions = +imapflags' will enable the
  37. # deprecated imapflags extension in addition to all extensions thatwere
  38. # already enabled by default.
  39. #sieve_extensions = +notify +imapflags
  40. # The Pigeonhole Sieve interpreter can have plugins of its own. Using this
  41. # setting, the used plugins can be specified. Check the Dovecot wiki
  42. # (wiki2.dovecot.org) or the pigeonhole website
  43. # (http://pigeonhole.dovecot.org) for available plugins.
  44. #sieve_plugins =
  45. # The separator that is expected between the :user and :detail
  46. # address parts introduced by the subaddress extension. This may
  47. # also be a sequence of characters (e.g. '--'). The current
  48. # implementation looks for the separator from the left of the
  49. # localpart and uses the first one encountered. The :user part is
  50. # left of the separator and the :detail part is right. This setting
  51. # is also used by Dovecot's LMTP service.
  52. #recipient_delimiter = +
  53. # The maximum size of a Sieve script. The compiler will refuse to
  54. # compile any script larger than this limit.
  55. #sieve_max_script_size = 1M
  56. # The maximum number of actions that can be performed during a single
  57. # script execution.
  58. #sieve_max_actions = 32
  59. # The maximum number of redirect actions that can be performed during
  60. # a single script execution.
  61. #sieve_max_redirects = 4
  62. # The maximum number of personal Sieve scripts a single user can have.
  63. # (Currently only relevant for ManageSieve)
  64. #sieve_quota_max_scripts = 0
  65. # The maximum amount of disk storage a single user's scripts may occupy.
  66. # (Currently only relevant for ManageSieve)
  67. #sieve_quota_max_storage = 0
  68. }