X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/98cc5f14caf136d786fea344a4742735ca192da2..069e33163e0b09a7d647a98c2fde284a16a43b99:/cookbooks/spamassassin/recipes/default.rb diff --git a/cookbooks/spamassassin/recipes/default.rb b/cookbooks/spamassassin/recipes/default.rb index 2c7e49dd5..dd1e19eb1 100644 --- a/cookbooks/spamassassin/recipes/default.rb +++ b/cookbooks/spamassassin/recipes/default.rb @@ -42,11 +42,11 @@ trusted_networks = node[:exim][:relay_from_hosts] if node[:exim][:smarthost_name] search(:node, "exim_smarthost_via:#{node[:exim][:smarthost_name]}\\:*").each do |host| - trusted_networks = trusted_networks | host.ipaddresses(:role => :external) + trusted_networks |= host.ipaddresses(:role => :external) end end -trusted_networks = trusted_networks - ["127.0.0.1", "::1"] +trusted_networks -= ["127.0.0.1", "::1"] template "/etc/spamassassin/local.cf" do source "local.cf.erb"