forked from ISTI-ansible-roles/ansible-roles
Merge branch 'master' of adellam/ansible-roles into master
This commit is contained in:
commit
8c790c8547
|
@ -177,8 +177,10 @@ mydestination = {{ ansible_fqdn }}, localhost
|
||||||
#
|
#
|
||||||
#local_recipient_maps = unix:passwd.byname $alias_maps
|
#local_recipient_maps = unix:passwd.byname $alias_maps
|
||||||
#local_recipient_maps = proxy:unix:passwd.byname $alias_maps
|
#local_recipient_maps = proxy:unix:passwd.byname $alias_maps
|
||||||
{% if not postfix_local_recipients %}
|
{% if postfix_virtual_transport_enabled %}
|
||||||
local_recipient_maps =
|
local_recipient_maps =
|
||||||
|
{% elif not postfix_local_recipients %}
|
||||||
|
#local_recipient_maps =
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
# The unknown_local_recipient_reject_code specifies the SMTP server
|
# The unknown_local_recipient_reject_code specifies the SMTP server
|
||||||
|
@ -347,6 +349,7 @@ relayhost = {{ postfix_relay_host }}:{{ postfix_relay_port }}
|
||||||
transport_maps = {% for tmap in postfix_transport_maps %}{{ tmap }}{% if not loop.last %}, {% endif %}{% endfor %}
|
transport_maps = {% for tmap in postfix_transport_maps %}{{ tmap }}{% if not loop.last %}, {% endif %}{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
|
||||||
# ALIAS DATABASE
|
# ALIAS DATABASE
|
||||||
#
|
#
|
||||||
# The alias_maps parameter specifies the list of alias databases used
|
# The alias_maps parameter specifies the list of alias databases used
|
||||||
|
@ -490,7 +493,7 @@ virtual_mailbox_maps = {% for mbmap in postfix_virtual_mailbox_maps %}{{ mbmap }
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if postfix_virtual_domains %}
|
{% if postfix_virtual_domains %}
|
||||||
virtual_alias_domains = = {{ postfix_virtual_alias_domains }}
|
virtual_alias_domains = {{ postfix_virtual_alias_domains }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if postfix_virtual_addresses %}
|
{% if postfix_virtual_addresses %}
|
||||||
virtual_alias_maps = {% for mbmap in postfix_virtual_alias_maps %}{{ mbmap }} {% endfor %}
|
virtual_alias_maps = {% for mbmap in postfix_virtual_alias_maps %}{{ mbmap }} {% endfor %}
|
||||||
|
|
Loading…
Reference in New Issue