customising sieve_max_redirections with dovecot 2.4

shadowq

Verified User
Joined
Dec 5, 2010
Messages
97
Previously, this could be modified in the plugin section of 90-sieve.conf in custom/dovecot/conf.d.
Code:
plugin {
sieve_max_redirects = 8
}
However, it looks like plugin isn't utilised anymore. And I'm a little confused by the docs.
Any assistance as to where sieve settings are supposed to be going now, that'd be great!
 
Hello,

You might try and customize the section:

Code:
protocol sieve {
  managesieve_max_line_length = 65536
  managesieve_implementation_string = Dovecot Pigeonhole
  managesieve_max_compile_errors = 5
  managesieve_logout_format = bytes=%{input}/%{output}
  log_path = /var/log/dovecot-sieve-errors.log
  info_log_path = /var/log/dovecot-sieve.log
}

in the file /etc/dovecot/conf.d/90-sieve.conf considering the rules coming from Directadmin
 
Back
Top