10 lines
216 B
Text
10 lines
216 B
Text
|
# {{ ansible_managed }}
|
||
|
|
||
|
{% if postfix_domains is defined %}
|
||
|
{% for domain in postfix_domains %}
|
||
|
{% if domain.type == "relay" %}
|
||
|
{{ "%-50s %s" | format(domain.name, "#domain") }}
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
{% endif %}
|