ansible-role-postfix/templates/postfix/conf.d/helo_checks.j2

14 lines
372 B
Plaintext
Raw Normal View History

{{ ansible_managed | comment }}
2023-03-20 20:01:04 +01:00
{% 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 %}