11 lines
285 B
Text
11 lines
285 B
Text
|
### {{ ansible_managed }}
|
||
|
|
||
|
{% if 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 %}
|