2024-03-27 17:39:16 +01:00
|
|
|
{{ ansible_managed | comment }}
|
2023-03-20 20:01:04 +01:00
|
|
|
|
|
|
|
# Use this file to block SMTP-Auth access for users.
|
|
|
|
# Example:
|
|
|
|
# username REJECT
|
|
|
|
|
|
|
|
{% if postfix_bad_smtp_auth_users is defined %}
|
|
|
|
{% for user in postfix_bad_smtp_auth_users %}
|
|
|
|
{{ "%-30s %s" | format(user, "REJECT") }}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|