20 lines
536 B
Django/Jinja
20 lines
536 B
Django/Jinja
### {{ ansible_managed }}
|
|
|
|
#{% if for domains postfix_transport_relay is defined %}
|
|
#{% for transport in postfix_transport_relay %}
|
|
#{% if transport.comment is defined %}
|
|
#{{ transport.comment }}
|
|
#{% endif %}
|
|
#{{ "%-50s %s" | format(transport.destination, transport.relay) }}
|
|
#{% endfor %}
|
|
#{% endif %}
|
|
|
|
|
|
{% for domain in posfix_domains %}
|
|
{% if domain.type == "relay" %}
|
|
{% if domain.comment is defined %}
|
|
comment: {{ domain.comment }}
|
|
{% endif %}
|
|
{{ "%-50s %s" | format(domain.name, domain.relay_host) }}
|
|
{% endif %}
|
|
{% endfor %}
|