From 04f365170dee822a217a8daf3b8c5fbc9a082e43 Mon Sep 17 00:00:00 2001 From: Dominik Schleich Date: Thu, 27 Aug 2015 16:14:57 +0200 Subject: [PATCH] changed the default aliases variable name to match the one checked in init.sls this times also in the template --- postfix/files/main.cf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/postfix/files/main.cf b/postfix/files/main.cf index 0776953..3a28124 100644 --- a/postfix/files/main.cf +++ b/postfix/files/main.cf @@ -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']) }}