2026-02-10 17:24:59 -03:00
|
|
|
# Dovecot configuration file
|
|
|
|
|
# Ansible managed: {{ ansible_managed }}
|
2026-03-11 12:40:37 -03:00
|
|
|
{% if dovecot_major_version is defined and dovecot_major_version is version('2.4', '>=') %}
|
|
|
|
|
dovecot_config_version = 2.4.0
|
|
|
|
|
dovecot_storage_version = 2.4.0
|
|
|
|
|
{% endif %}
|
2026-02-10 17:24:59 -03:00
|
|
|
|
|
|
|
|
protocols = {{ dovecot_protocols }}
|
2026-02-11 16:36:01 -03:00
|
|
|
{% if dovecot_imap_capability | default('') | length > 0 %}
|
|
|
|
|
|
|
|
|
|
protocol imap {
|
|
|
|
|
imap_capability = {{ dovecot_imap_capability }}
|
|
|
|
|
}
|
|
|
|
|
{% endif %}
|
2026-02-10 17:24:59 -03:00
|
|
|
|
|
|
|
|
# Dictionary of configuration files
|
|
|
|
|
!include conf.d/*.conf
|