11 lines
317 B
Django/Jinja
11 lines
317 B
Django/Jinja
#
|
|
# {{ ansible_managed }}
|
|
#
|
|
|
|
# Optional lookup tables with new contact information for users or domains that
|
|
# no longer exist.
|
|
# http://www.postfix.org/postconf.5.html#relocated_maps
|
|
{% for item in postfix_lmdb_relocated_maps_table_entries | default([]) %}
|
|
{{ item.old_address }} {{ item.new_address }}
|
|
{% endfor %}
|