X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/68e068818d559ef35bdf2a138a93596337828ef9..3dd8e177f260478b9da3c5c5be583bd262e1f6e9:/cookbooks/exim/recipes/default.rb diff --git a/cookbooks/exim/recipes/default.rb b/cookbooks/exim/recipes/default.rb index 30617cc8e..219baa36d 100644 --- a/cookbooks/exim/recipes/default.rb +++ b/cookbooks/exim/recipes/default.rb @@ -85,7 +85,7 @@ end relay_from_hosts = node[:exim][:relay_from_hosts] if node[:exim][:smarthost_name] - search(:node, "exim_smarthost_via:#{node[:exim][:smarthost_name]}\\:*").each do |host| + search(:node, "exim_smarthost_via:*?").each do |host| relay_from_hosts |= host.ipaddresses(:role => :external) end @@ -236,18 +236,37 @@ if node[:exim][:smarthost_name] dest "fw" proto "tcp:syn" dest_ports port - source_ports "1024:" + source_ports "1024-65535" end end else + smarthosts_inet = [] + smarthosts_inet6 = [] + + search(:node, "exim_smarthost_name:*?").each do |host| + smarthosts_inet |= host.ipaddresses(:role => :external, :family => :inet) + smarthosts_inet6 |= host.ipaddresses(:role => :external, :family => :inet6) + end + node[:exim][:daemon_smtp_ports].each do |port| firewall_rule "accept-inbound-smtp-#{port}" do action :accept - source "bm:mail.openstreetmap.org" + family :inet + source "net:#{smarthosts_inet.sort.join(',')}" + dest "fw" + proto "tcp:syn" + dest_ports port + source_ports "1024-65535" + end + + firewall_rule "accept-inbound-smtp-#{port}" do + action :accept + family :inet6 + source "net:#{smarthosts_inet6.sort.join(',')}" dest "fw" proto "tcp:syn" dest_ports port - source_ports "1024:" + source_ports "1024-65535" end end end