2021-01-28 01:34:09 +01:00
|
|
|
# {{ 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
|
|
|
|
|
2021-01-30 01:10:31 +01:00
|
|
|
# Authentification
|
2021-01-30 01:05:37 +01:00
|
|
|
service auth {
|
|
|
|
|
|
|
|
# Postfix smtp-auth
|
|
|
|
unix_listener /var/spool/postfix/private/auth {
|
|
|
|
mode = 0660
|
|
|
|
user = postfix
|
|
|
|
group = postfix
|
|
|
|
}
|
2021-01-28 01:34:09 +01:00
|
|
|
}
|
2021-01-30 01:10:31 +01:00
|
|
|
|
|
|
|
# Local LMTP
|
|
|
|
service lmtp {
|
|
|
|
unix listener /var/spool/postfix/private/dovecot-lmtp {
|
|
|
|
group = postfix
|
|
|
|
mode = 0600
|
|
|
|
user = postfix
|
|
|
|
}
|
|
|
|
}
|