Initial commit
This commit is contained in:
commit
11b84aa872
40 changed files with 995 additions and 0 deletions
12
templates/postfix/conf.d/transport_global_exceptions.j2
Normal file
12
templates/postfix/conf.d/transport_global_exceptions.j2
Normal file
|
@ -0,0 +1,12 @@
|
|||
### {{ ansible_managed }}
|
||||
|
||||
# Use this file for mail addresses that should be treated specially.
|
||||
|
||||
{% if postfix_transport_global_exceptions is defined %}
|
||||
{% for address in postfix_transport_global_exceptions %}
|
||||
{% if address.comment is defined %}
|
||||
# {{ address.comment }}
|
||||
{% endif %}
|
||||
{{ "%-50s %s" | format(address.adress, address.state) }}
|
||||
{% endfor %}
|
||||
{% endif %}
|
Loading…
Add table
Add a link
Reference in a new issue