On 16. Feb 2025, at 13.20, Joan Moreau via dovecot <dovecot@dovecot.org> wrote:
> 
> Dovecot now starts
> 
> I have a problem with the initial block
> 
> mail_plugins {
>    fts = yes
>    fts_xapian = yes
>    sieve = yes
>    managesieve = yes
> }

You're doing more than just syntax changes here. There is no managesieve 
plugin. And sieve plugin shouldn't be globally enabled. Looking at your 
original config:

> mail_plugins = fts fts_xapian
> protocol lmtp {
>        mail_plugins = $mail_plugins sieve
> }

This translates into:

mail_plugins {
  fts = yes
  fts_xapian = yes
}
# although above could be just as well the same as before: mail_plugins = fts 
fts_xapian

protocol lmtp {
  mail_plugins {
    sieve = yes
  }
}

_______________________________________________
dovecot mailing list -- dovecot@dovecot.org
To unsubscribe send an email to dovecot-le...@dovecot.org

Reply via email to