From f0a2bfd7401e6529c852260b40bbc23ed9ef4a7b Mon Sep 17 00:00:00 2001 From: Otthorn Date: Thu, 28 Jan 2021 01:34:09 +0100 Subject: [PATCH] Add IMAP/POP/SMTP auth conf --- roles/dovecot/templates/conf.d/10-master.conf.j2 | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 roles/dovecot/templates/conf.d/10-master.conf.j2 diff --git a/roles/dovecot/templates/conf.d/10-master.conf.j2 b/roles/dovecot/templates/conf.d/10-master.conf.j2 new file mode 100644 index 0000000..39b2421 --- /dev/null +++ b/roles/dovecot/templates/conf.d/10-master.conf.j2 @@ -0,0 +1,13 @@ +# {{ ansible_managed }} +# Dovecot configuration for Aurore +# More info at https://gitea.auro.re/Aurore/ansible +# And on the Dovecot wiki : https://doc.dovecot.org/ + +# IMAP/POP/STMP auth configuration + +# Postfix smtp-auth +unix_listener /var/spool/postfix/private/auth { + mode = 0660 + user = postfix + group = postfix +}