Initial Commit
Lint Markdown files / markdown-lint (push) Successful in 54s
Ansible Linter / ansible-lint (push) Successful in 1m0s

This commit is contained in:
2026-09-07 17:30:42 +02:00
commit 91dabffbd8
53 changed files with 5419 additions and 0 deletions
@@ -0,0 +1,17 @@
#
# {{ 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 %}