Displaying 1 result from an estimated 1 matches for "acl_enabled".
2023 Jan 13
1
Add Userdb extra field to existing configuration settings, not overriding them
...ication/user_database_ex
tra_fields/ ), any extra field that is passed from a SQL query will
overwrite any existing settings on the dovecot.conf configuration file ( if
present ) .
For example, if i want to enable a plugin ( ex: acl ) on a per user basis, i
would add a column\field ( ex: "acl_enabled" = 1 ) into my auth DB , then
add into the dovecot password\user queries :
.
IF(acl_enabled = 0, NULL, 'acl imap_acl') AS mail_plugins
.
While having in the dovecot.conf this setting :
.
mail_plugins = quota notify
protocol imap
mail_plugins = $mail_plugins imap_quota...