changed the default aliases variable name to match the one checked in init.sls this times also in the template

This commit is contained in:
Dominik Schleich 2015-08-27 16:14:57 +02:00
parent ca7cb13ae9
commit 04f365170d
1 changed files with 2 additions and 2 deletions

View File

@ -48,8 +48,8 @@
# information on enabling SSL in the smtp client.
{{ set_parameter('myhostname', grains['fqdn']) }}
{{ set_parameter('alias_maps', 'hash:' ~ postfix.aliases) }}
{{ set_parameter('alias_database', 'hash:' ~ postfix.aliases) }}
{{ set_parameter('alias_maps', 'hash:' ~ postfix.aliases_file) }}
{{ set_parameter('alias_database', 'hash:' ~ postfix.aliases_file) }}
{{ set_parameter('mydestination', [grains['fqdn'], 'localhost', 'localhost.localdomain', grains['domain']]) }}
{{ set_parameter('relayhost', '') }}
{{ set_parameter('mynetworks', ['127.0.0.0/8', '[::ffff:127.0.0.0]/104', '[::1]/128']) }}