12 lines
484 B
Django/Jinja
12 lines
484 B
Django/Jinja
#
|
|
# {{ ansible_managed }}
|
|
#
|
|
|
|
# Search the specified access(5) database for the resolved RCPT TO address,
|
|
# domain, parent domains, or localpart@, and execute the corresponding action.
|
|
# http://www.postfix.org/postconf.5.html#check_recipient_access
|
|
# http://www.postfix.org/access.5.html
|
|
{% for item in postfix_lmdb_check_recipient_access_maps_table_entries | default([]) %}
|
|
{{ item.pattern }} {{ item.action }}{% if item.reason is defined %} {{ item.reason }}{% endif %}
|
|
{% endfor %}
|