This commit is contained in:
phil 2023-03-24 15:30:27 +01:00
parent bce2d91ea3
commit bc02212604
2 changed files with 8 additions and 8 deletions

View file

@ -1,25 +1,25 @@
# {{ ansible_managed }}
# Example variables list
# Example
#
# postfix_aliases:
# - domain: mydomain.org
# - domain:
name: mydomain.org
# comment: |
# Mydomain.org
# List of Aliases
# # Mydomain.org
# # List of Aliases
# aliases:
# - name: foo
# dest:
# - "alice@yourdomain.org
# - "bob@yourdomain.org
{% if postfix_aliases is defined %}
{% for domain in postfix_aliases %}
{% if domain.comment is defined %}
# {{ domain.comment }}
{{ domain.comment }}
{% endif %}
{% for alias in domain.aliases %}
{{ "%-50s %s" | format(alias.name, alias.dest | join(',')) }}
{{ "%-50s %s" | format(alias.name + '@' + domain.name, alias.dest | join(',')) }}
{% endfor %}
{% endfor %}
{% endif %}