Files
ansible-role-postfix/templates/etc/postfix/relay_domain_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

12 lines
481 B
Django/Jinja

#
# {{ ansible_managed }}
#
# Domains that match $relay_domains are delivered with the $relay_transport mail
# delivery transport. The SMTP server validates recipient addresses with
# $relay_recipient_maps and rejects non-existent recipients.
# http://www.postfix.org/postconf.5.html#relay_domains
{% for item in postfix_lmdb_relay_domains_table_entries | default([]) %}
{{ item.domain }} {{ item.action }}{% if item.reason is defined %} {{ item.reason }}{% endif %}
{% endfor %}