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

9 lines
262 B
Text
Raw Normal View History

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