ansible-role-postfix/templates/postfix/conf.d/virtual_domains.j2

8 lines
188 B
Plaintext
Raw Normal View History

2023-03-24 12:45:12 +01:00
# {{ ansible_managed }}
{% if postfix_virtual_domains is defined %}
{% for domain in postfix_virtual_domains %}
{{ "%-50s %s" | format(domain.name, "#domain") }}
{% endfor %}
{% endif %}