11 lines
388 B
Django/Jinja
11 lines
388 B
Django/Jinja
#
|
|
# {{ ansible_managed }}
|
|
#
|
|
|
|
# Optional lookup tables that alias specific mail addresses or domains to other
|
|
# local or remote address. The table format and lookups are documented in
|
|
# virtual(5).
|
|
# http://www.postfix.org/postconf.5.html#virtual_alias_maps
|
|
{% for item in postfix_lmdb_virtual_alias_maps_table_entries | default([]) %}
|
|
{{ item.source }} {{ item.destination }}
|
|
{% endfor %} |