10 lines
339 B
Django/Jinja
10 lines
339 B
Django/Jinja
#
|
|
# {{ ansible_managed }}
|
|
#
|
|
|
|
# Optional lookup tables with mappings from mail address or domain to message
|
|
# delivery transport and/or next-hop destination.
|
|
# http://www.postfix.org/postconf.5.html#transport_maps
|
|
{% for item in postfix_lmdb_transport_maps_table_entries | default([]) %}
|
|
{{ item.pattern }} {{ item.transport }}
|
|
{% endfor %} |