14 lines
366 B
Text
14 lines
366 B
Text
|
### {{ ansible_managed }}
|
||
|
|
||
|
{% if postfix_default_helo_checks is defined %}
|
||
|
{% for check in postfix_default_helo_checks %}
|
||
|
{{ "%-30s %s" | format(check.client, check.state) }}
|
||
|
{% endfor %}
|
||
|
{% endif %}
|
||
|
|
||
|
{% if postfix_helo_checks is defined %}
|
||
|
{% for check in postfix_default_helo_checks %}
|
||
|
{{ "%-30s %s" | format(check.client, check.state) }}
|
||
|
{% endfor %}
|
||
|
{% endif %}
|