9 lines
275 B
Django/Jinja
9 lines
275 B
Django/Jinja
#
|
|
# {{ ansible_managed }}
|
|
#
|
|
|
|
# Replace only recipient e-mail addresses.
|
|
# http://www.postfix.org/postconf.5.html#recipient_canonical_maps
|
|
{% for item in postfix_lmdb_recipient_canonical_maps_table_entries | default([]) %}
|
|
{{ item.origin }} {{ item.replacement }}
|
|
{% endfor %} |