Initial commit
This commit is contained in:
commit
11b84aa872
40 changed files with 995 additions and 0 deletions
19
templates/postfix/conf.d/postscreen_access.j2
Normal file
19
templates/postfix/conf.d/postscreen_access.j2
Normal file
|
@ -0,0 +1,19 @@
|
|||
### {{ 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 %}
|
Loading…
Add table
Add a link
Reference in a new issue