{{ ansible_managed | comment }} {% if postfix_domains is defined %} {% for domain in postfix_domains %} {% if domain.type == "relay" %} {% if domain.comment is defined %} # {{ domain.comment }} {% endif %} {% if domain.relay is defined %} {% for relay in domain.relay %} {{ "%-60s %s" | format(relay.src | default( domain.name ), relay.dest) }} {% endfor %} {% endif %} {% endif %} {% endfor %} {% endif %} {% if postfix_transport_relay_domains is defined %} {% for domain in postfix_transport_relay_domains %} {% if domain.comment is defined %} # {{ domain.comment }} {% endif %} {{ "%-60s %s" | format(domain.name, domain.relay) }} {% endfor %} {% endif %}