Initial commit
This commit is contained in:
commit
11b84aa872
40 changed files with 995 additions and 0 deletions
11
templates/postfix/conf.d/bad_smtp_auth_users.j2
Normal file
11
templates/postfix/conf.d/bad_smtp_auth_users.j2
Normal file
|
@ -0,0 +1,11 @@
|
|||
### {{ ansible_managed }}
|
||||
|
||||
# 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 %}
|
Loading…
Add table
Add a link
Reference in a new issue