15 lines
644 B
Django/Jinja
15 lines
644 B
Django/Jinja
#
|
|
# {{ ansible_managed }}
|
|
#
|
|
|
|
# Optional lookup tables with all valid addresses in the domains that match
|
|
# $virtual_mailbox_domains. Specify zero or more "type:name" lookup tables,
|
|
# separated by whitespace or comma. Tables will be searched in the specified
|
|
# order until a match is found. In a lookup table, specify a left-hand side of
|
|
# "@domain.tld" to match any user in the specified domain that does not have a
|
|
# specific "user@domain.tld" entry.
|
|
# http://www.postfix.org/postconf.5.html#virtual_mailbox_maps
|
|
{% for item in postfix_lmdb_virtual_mailbox_maps_table_entries | default([]) %}
|
|
{{ item.address }} {{ item.action }}
|
|
{% endfor %}
|