ansible-role-postfix/templates/postfix/conf.d/client_checks.j2
2023-03-20 20:01:04 +01:00

11 lines
295 B
Django/Jinja

### {{ ansible_managed }}
### With this file you can allow or disallow clients to connect to the SMTP server.
{% if postfix_client_checks is defined %}
{% for client in postfix_client_checks %}
{{ client.comment }}
{{ "%-30s %s" | format(client.name, client.state) }}
{% endfor %}
{% endif %}