12 lines
481 B
Django/Jinja
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 %}
|