20 lines
528 B
Text
20 lines
528 B
Text
|
### {{ ansible_managed }}
|
||
|
|
||
|
{% if postfix_default_postscreen_access is defined %}
|
||
|
{% for source in postfix_default_postscreen_access %}
|
||
|
{% if source.comment is defined %}
|
||
|
# {{ source.comment }}
|
||
|
{% endif %}
|
||
|
{{ "%-40s %s" | format(source.source, source.state) }}
|
||
|
{% endfor %}
|
||
|
{% endif %}
|
||
|
|
||
|
{% if postfix_postscreen_access is defined %}
|
||
|
{% for source in postfix_postscreen_access %}
|
||
|
{% if source.comment is defined %}
|
||
|
# {{ source.comment }}
|
||
|
{% endif %}
|
||
|
{{ "%-40s %s" | format(source.source, source.state) }}
|
||
|
{% endfor %}
|
||
|
{% endif %}
|