All checks were successful
Molecule Tests / molecule-tests (pull_request) Successful in 7m18s
13 lines
462 B
Django/Jinja
13 lines
462 B
Django/Jinja
# Dovecot authentication configuration
|
|
# Ansible managed: {{ ansible_managed }}
|
|
|
|
{% if dovecot_major_version is defined and dovecot_major_version is version('2.4', '>=') %}
|
|
auth_allow_cleartext = {{ 'no' if dovecot_ssl == 'required' else 'yes' }}
|
|
{% else %}
|
|
disable_plaintext_auth = {{ 'yes' if dovecot_ssl == 'required' else 'no' }}
|
|
{% endif %}
|
|
auth_mechanisms = {{ dovecot_auth_mechanisms }}
|
|
|
|
!include auth-dovecot-users.conf.ext
|
|
!include auth-system.conf.ext
|