ansible-role-postfix_mta/templates/aliases.j2

10 lines
208 B
Text
Raw Normal View History

2021-08-20 16:36:55 +00:00
# {{ ansible_managed }}
{% for alias, redirect in postfix_aliases.items() %}
{% if redirect is string %}
{{ alias }}: {{ redirect }}
{% else %}
{{ alias }}: {{ redirect|join(',') }}
{% endif %}
{% endfor %}