18 lines
672 B
Django/Jinja
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 %}
|