diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2015-11-26 23:41:52 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-11-26 23:41:52 +0100 |
commit | df942acc3f60ec483091ef37e4f886232e753217 (patch) | |
tree | a3e0329ad21377225cd31b7dc3d70ba3936eef45 | |
parent | 2d123890169a8115084c0bebd57e40ab813b2706 (diff) |
dovecot-sieve: Enable the 'editheader' extension (5293).
Which is disabled by default, as per
http://wiki.dovecot.org/Pigeonhole/Sieve
-rw-r--r-- | roles/IMAP/files/etc/dovecot/conf.d/90-sieve.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/IMAP/files/etc/dovecot/conf.d/90-sieve.conf b/roles/IMAP/files/etc/dovecot/conf.d/90-sieve.conf index 8308adc..afee135 100644 --- a/roles/IMAP/files/etc/dovecot/conf.d/90-sieve.conf +++ b/roles/IMAP/files/etc/dovecot/conf.d/90-sieve.conf @@ -33,41 +33,41 @@ plugin { # file or directory paths can be specified by appending an increasing number. #sieve_before = #sieve_before2 = #sieve_before3 = (etc...) # Identical to sieve_before, only the specified scripts are executed after the # user's script (only when keep is still in effect!). Multiple script file or # directory paths can be specified by appending an increasing number. #sieve_after = #sieve_after2 = #sieve_after2 = (etc...) # Which Sieve language extensions are available to users. By default, all # supported extensions are available, except for deprecated extensions or # those that are still under development. Some system administrators may want # to disable certain Sieve extensions or enable those that are not available # by default. This setting can use '+' and '-' to specify differences relative # to the default. For example `sieve_extensions = +imapflags' will enable the # deprecated imapflags extension in addition to all extensions were already # enabled by default. - #sieve_extensions = +notify +imapflags + sieve_extensions = +editheader # Which Sieve language extensions are ONLY available in global scripts. This # can be used to restrict the use of certain Sieve extensions to administrator # control, for instance when these extensions can cause security concerns. # This setting has higher precedence than the `sieve_extensions' setting # (above), meaning that the extensions enabled with this setting are never # available to the user's personal script no matter what is specified for the # `sieve_extensions' setting. The syntax of this setting is similar to the # `sieve_extensions' setting, with the difference that extensions are # enabled or disabled for exclusive use in global scripts. Currently, no # extensions are marked as such by default. #sieve_global_extensions = # The Pigeonhole Sieve interpreter can have plugins of its own. Using this # setting, the used plugins can be specified. Check the Dovecot wiki # (wiki2.dovecot.org) or the pigeonhole website # (http://pigeonhole.dovecot.org) for available plugins. # The sieve_extprograms plugin is included in this release. #sieve_plugins = |