Optionally add the hostname to the virtual_domains table
This commit is contained in:
parent
eb904bf219
commit
1ef6d31abd
|
@ -165,6 +165,7 @@ postfix_alias_maps:
|
||||||
postfix_alias_databases: '{{ postfix_alias_maps }}'
|
postfix_alias_databases: '{{ postfix_alias_maps }}'
|
||||||
|
|
||||||
postfix_virtual_addresses: False
|
postfix_virtual_addresses: False
|
||||||
|
postfix_hostname_as_virtual_domain: True
|
||||||
postfix_virtual_mailbox_domains: 'hash:/etc/postfix/virtual_domains'
|
postfix_virtual_mailbox_domains: 'hash:/etc/postfix/virtual_domains'
|
||||||
postfix_virtual_mailbox_domains_data: []
|
postfix_virtual_mailbox_domains_data: []
|
||||||
#
|
#
|
||||||
|
|
|
@ -6,6 +6,9 @@
|
||||||
{% for dom in postfix_virtual_mailbox_domains_data %}
|
{% for dom in postfix_virtual_mailbox_domains_data %}
|
||||||
{{ dom.domain }} OK
|
{{ dom.domain }} OK
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
{% if postfix_hostname_as_virtual_domain %}
|
||||||
|
{{ ansible_fqdn }} OK
|
||||||
|
{% endif %}
|
||||||
{% else %}
|
{% else %}
|
||||||
localdomain OK
|
localdomain OK
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Reference in New Issue