package "exim4"
package "openssl"
+package "ssl-cert"
if File.exist?("/var/run/clamav/clamd.ctl")
package "exim4-daemon-heavy"
append true
end
+template "/tmp/exim.ssl.cnf" do
+ source "ssl.cnf.erb"
+ owner "root"
+ group "root"
+ mode 0644
+ not_if do
+ File.exists?("/etc/ssl/certs/exim.pem") and File.exists?("/etc/ssl/private/exim.key")
+ end
+end
+
execute "/etc/ssl/certs/exim.pem" do
- command "openssl req -x509 -newkey rsa:2048 -keyout /etc/ssl/private/exim.key -out /etc/ssl/certs/exim.pem -days 3650 -nodes -subj='/O=OpenStreetMap/CN=#{node[:name]}'"
+ command "openssl req -x509 -newkey rsa:2048 -keyout /etc/ssl/private/exim.key -out /etc/ssl/certs/exim.pem -days 3650 -nodes -config /tmp/exim.ssl.cnf"
user "root"
group "ssl-cert"
not_if do
- File.exists?("/etc/ssl/certs/exim.pem") && File.exists?("/etc/ssl/private/exim.key")
+ File.exists?("/etc/ssl/certs/exim.pem") and File.exists?("/etc/ssl/private/exim.key")
end
end
relay_to_domains = node[:exim][:relay_to_domains]
node[:exim][:routes].each_value do |route|
- relay_to_domains = relay_to_domains | route[:domains]
+ relay_to_domains = relay_to_domains | route[:domains] if route[:host]
end
relay_from_hosts = node[:exim][:relay_from_hosts]
mode 0644
variables :relay_to_domains => relay_to_domains.sort,
:relay_from_hosts => relay_from_hosts.sort
- notifies :restart, resources(:service => "exim4")
+ notifies :restart, "service[exim4]"
end
search(:accounts, "*:*").each do |account|
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]