Files
ansible-role-postfix/templates/etc/postfix/smtpd_sender_login_maps.j2
T
volker.raschek 91dabffbd8
Lint Markdown files / markdown-lint (push) Successful in 54s
Ansible Linter / ansible-lint (push) Successful in 1m0s
Initial Commit
2026-09-07 17:30:42 +02:00

18 lines
672 B
Django/Jinja

#
# {{ ansible_managed }}
#
# Optional lookup table with the SASL login names that own the sender (MAIL
# FROM) addresses. Used by reject_sender_login_mismatch and
# reject_authenticated_sender_login_mismatch restrictions.
#
# Lookup operations for a sender address user@domain:
# - user@domain: always done, highest precedence
# - user: only when domain matches $myorigin, $mydestination, $inet_interfaces
# or $proxy_interfaces
# - @domain: done last, lowest precedence
# http://www.postfix.org/postconf.5.html#smtpd_sender_login_maps
{% for item in postfix_lmdb_smtpd_sender_login_maps_table_entries | default([]) %}
{{ item.address }} {{ item.login }}
{% endfor %}