ansible-role-postfix/templates/postfix/conf.d/transport_global_exceptions.j2
2023-03-20 20:01:04 +01:00

13 lines
364 B
Django/Jinja

### {{ ansible_managed }}
# Use this file for mail addresses that should be treated specially.
{% if postfix_transport_global_exceptions is defined %}
{% for address in postfix_transport_global_exceptions %}
{% if address.comment is defined %}
# {{ address.comment }}
{% endif %}
{{ "%-50s %s" | format(address.adress, address.state) }}
{% endfor %}
{% endif %}