package "exim4"
package "openssl"
+package "ssl-cert"
if File.exist?("/var/run/clamav/clamd.ctl")
package "exim4-daemon-heavy"
notifies :restart, "service[exim4]"
end
-template "/etc/exim4/callout_exempt_senders" do
- source "callout_exempt_senders.erb"
- owner "root"
- group "Debian-exim"
- mode 0644
-end
-
search(:accounts, "*:*").each do |account|
name = account["id"]
details = node[:accounts][:users][name] || {}
munin_plugin "exim_mailqueue"
munin_plugin "exim_mailstats"
-if not relay_to_domains.empty? or not node[:exim][:local_domains].empty?
+if node[:exim][:smarthost_name]
node[:exim][:daemon_smtp_ports].each do |port|
firewall_rule "accept-inbound-smtp-#{port}" do
action :accept
source_ports "1024:"
end
end
+else
+ node[:exim][:daemon_smtp_ports].each do |port|
+ firewall_rule "accept-inbound-smtp-#{port}" do
+ action :accept
+ source "bm:mail.openstreetmap.org"
+ dest "fw"
+ proto "tcp:syn"
+ dest_ports port
+ source_ports "1024:"
+ end
+ end
end
if node[:exim][:smarthost_via]