From e209749f7460423f4cb432eafbdbf2613d53c0d4 Mon Sep 17 00:00:00 2001 From: Luciano Giacchetta Date: Tue, 10 Feb 2026 17:32:47 -0300 Subject: [PATCH] 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. --- templates/10-master.conf.j2 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/10-master.conf.j2 b/templates/10-master.conf.j2 index 6f70385..5131440 100644 --- a/templates/10-master.conf.j2 +++ b/templates/10-master.conf.j2 @@ -38,7 +38,8 @@ service auth { unix_listener auth-userdb { mode = 0600 - user = vmail + user = postfix + group = postfix } }