diff options
| -rw-r--r-- | puppet/modules/site_postfix/manifests/mx.pp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/puppet/modules/site_postfix/manifests/mx.pp b/puppet/modules/site_postfix/manifests/mx.pp index 14c8634e..ed70e80e 100644 --- a/puppet/modules/site_postfix/manifests/mx.pp +++ b/puppet/modules/site_postfix/manifests/mx.pp @@ -7,8 +7,8 @@ class site_postfix::mx {    $domain              = $domain_hash['full_suffix']    $host_domain         = $domain_hash['full']    $cert_name           = hiera('name') -  $mynetworks          = join(hiera('mynetworks'), ' ') -  $rbls                = suffix(prefix(hiera('rbls'), 'reject_rbl_client '), ',') +  $mynetworks          = join(hiera('mynetworks', ''), ' ') +  $rbls                = suffix(prefix(hiera('rbls', []), 'reject_rbl_client '), ',')    $root_mail_recipient = hiera('contacts')    $postfix_smtp_listen = 'all' | 
