Added alias_maps as a separate option
Previously alias_maps was set to the same value as virtual_alias_maps, which behaves quite differently and generally does not make much sense.
This commit is contained in:
parent
6fc46ae4d1
commit
1a34983a35
2 changed files with 2 additions and 1 deletions
|
|
@ -14,6 +14,7 @@ postfix:
|
||||||
- $alias_maps
|
- $alias_maps
|
||||||
transport_maps: []
|
transport_maps: []
|
||||||
sender_dependent_relayhost_maps: ''
|
sender_dependent_relayhost_maps: ''
|
||||||
|
alias_maps: ''
|
||||||
virtual_alias_maps: ''
|
virtual_alias_maps: ''
|
||||||
virtual_regex: []
|
virtual_regex: []
|
||||||
virtual_mailbox_domains: []
|
virtual_mailbox_domains: []
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@ myorigin = $mydomain
|
||||||
mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 {{ postfix.mynetworks|join(' ') }}
|
mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 {{ postfix.mynetworks|join(' ') }}
|
||||||
mydestination = {{ inventory_hostname_short }} {{ inventory_hostname }} localhost {{ postfix.mydestination|join(' ') }}
|
mydestination = {{ inventory_hostname_short }} {{ inventory_hostname }} localhost {{ postfix.mydestination|join(' ') }}
|
||||||
|
|
||||||
alias_maps = {{ postfix.virtual_alias_maps }}
|
alias_maps = {{ postfix.alias_maps }}
|
||||||
|
|
||||||
relayhost = {{ postfix.relayhost }}
|
relayhost = {{ postfix.relayhost }}
|
||||||
relay_domains = {{ postfix.relay_domains|join(', ') }}
|
relay_domains = {{ postfix.relay_domains|join(', ') }}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue