fix(dovecot): update auth-userdb listener permissions for postfix

Update the `unix_listener auth-userdb` configuration in `templates/10-master.conf.j2`. This change switches the socket ownership from `vmail` to the `postfix` user and explicitly sets the group to `postfix`.

This ensures that the Postfix service has the necessary permissions to access the Dovecot authentication socket for user lookups.
This commit is contained in:
2026-02-10 17:32:47 -03:00
parent 87ce53d1d3
commit e209749f74

View File

@@ -38,7 +38,8 @@ service auth {
unix_listener auth-userdb {
mode = 0600
user = vmail
user = postfix
group = postfix
}
}