summaryrefslogtreecommitdiffstats
path: root/roles/postfix/templates/aliases.users
blob: 9b13e3b2ded991d966cab2f8145d534e42ac3b0a (plain)
1
2
3
4
5
6
7
{% if postfix_aliases is defined %}
{% for item in postfix_aliases %}
{{ item.alias }}: {% if item.mail is string %} {{ item.mail }}
{% else %} {{ item.mail |join(',') }}
{% endif  %}
{% endfor %}
{% endif  %}