fix: Dovecot: adjust mail_plugins

Signed-off-by: Georg Lauterbach <44545919+georglauterbach@users.noreply.github.com>
This commit is contained in:
Georg Lauterbach 2025-08-02 16:39:26 +02:00
parent 536fd584eb
commit 7462cd6b12
No known key found for this signature in database
GPG Key ID: D84CD4AA46D7F099
3 changed files with 10 additions and 4 deletions

View File

@ -206,7 +206,9 @@ mail_privileged_group = docker
# Space separated list of plugins to load for all services. Plugins specific to
# IMAP, LDA, etc. are added to this list in their own .conf files.
mail_plugins = $mail_plugins quota
mail_plugins {
quota = yes
}
##
## Mailbox handling optimizations

View File

@ -1,4 +1,6 @@
protocol imap {
# allow IMAP clients to ask quota usage
mail_plugins = $mail_plugins imap_quota
# allow IMAP clients to ask quota usage
mail_plugins {
imap_quota = yes
}
}

View File

@ -15,5 +15,7 @@
protocol lmtp {
# Space separated list of plugins to load (default is global mail_plugins).
mail_plugins = $mail_plugins sieve
mail_plugins {
sieve = yes
}
}