From dcdb7d1687b43f4e4c329a33bd10c8f0f2cfade8 Mon Sep 17 00:00:00 2001 From: Jim Hague Date: Fri, 19 May 2023 20:47:54 +0100 Subject: [PATCH] Allow exim access to dovecot auth-client. --- states/email/dovecot_local.conf | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/states/email/dovecot_local.conf b/states/email/dovecot_local.conf index fdd30a3..e9caf2b 100644 --- a/states/email/dovecot_local.conf +++ b/states/email/dovecot_local.conf @@ -18,3 +18,10 @@ protocol imap { mail_max_userip_connections = 40 } +# Allow client auth to exim4. +service auth { + unix_listener auth-client { + mode = 0660 + group = Debian-exim + } +}