ansible-role-postfix/templates/postfix/conf.d/permit_sasl_login_mismatch.j2
phil 8c79f8b687 Use Ansible defaults to insert comments
Enable vscodium code highlighting for some files
2024-03-27 17:39:16 +01:00

9 lines
262 B
Django/Jinja

{{ ansible_managed | comment }}
### Enable sender spoofing for selected accounts
{% if postfix_permit_login_mismatch is defined %}
{% for user in postfix_permit_login_mismatch %}
{{ "%-50s %s" | format(user, "permit_login_mismatch") }}
{% endfor %}
{% endif %}