14 lines
628 B
Django/Jinja
14 lines
628 B
Django/Jinja
#
|
|
# {{ ansible_managed }}
|
|
#
|
|
|
|
# Postfix is the final destination for the specified list of domains; mail is
|
|
# delivered via the $virtual_transport mail delivery transport. By default this
|
|
# is the Postfix virtual(8) delivery agent. The SMTP server validates recipient
|
|
# addresses with $virtual_mailbox_maps and rejects mail for non-existent
|
|
# recipients. See also the virtual mailbox domain class in the
|
|
# ADDRESS_CLASS_README file.
|
|
# http://www.postfix.org/postconf.5.html#virtual_mailbox_domains
|
|
{% for item in postfix_lmdb_virtual_mailbox_domains_table_entries | default([]) %}
|
|
{{ item.domain }} {{ item.action }}
|
|
{% endfor %} |