X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/2012763fa907ef6b75ac6d3272f698846e9ecce4..c2dc25574a90f18b88ec9040dd74315ef8e74893:/cookbooks/exim/recipes/default.rb?ds=sidebyside diff --git a/cookbooks/exim/recipes/default.rb b/cookbooks/exim/recipes/default.rb index 8c61b2da1..dbf90bdfb 100644 --- a/cookbooks/exim/recipes/default.rb +++ b/cookbooks/exim/recipes/default.rb @@ -234,20 +234,41 @@ if node[:exim][:smarthost_name] action :accept source "net" dest "fw" - proto "tcp:syn" + proto "tcp" 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" + dest_ports port + source_ports "1024-65535" + not_if { smarthosts_inet.empty? } + end + + firewall_rule "accept-inbound-smtp-#{port}" do + action :accept + family :inet6 + source "net:#{smarthosts_inet6.sort.join(',')}" dest "fw" - proto "tcp:syn" + proto "tcp" dest_ports port - source_ports "1024:" + source_ports "1024-65535" + not_if { smarthosts_inet6.empty? } end end end @@ -257,7 +278,7 @@ if node[:exim][:smarthost_via] action :reject source "fw" dest "net" - proto "tcp:syn" + proto "tcp" dest_ports "smtp" end end