9 lines
256 B
Text
9 lines
256 B
Text
|
### {{ ansible_managed }}
|
||
|
### 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 %}
|