#
include_recipe "networking"
-include_recipe "ssl"
package "exim4"
+package "openssl"
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 -config /tmp/exim.ssl.cnf"
+ user "root"
+ group "ssl-cert"
+ not_if do
+ File.exists?("/etc/ssl/certs/exim.pem") and File.exists?("/etc/ssl/private/exim.key")
+ end
+end
+
service "exim4" do
action [ :enable, :start ]
supports :status => true, :restart => true, :reload => true
- subscribes :restart, resources(:cookbook_file => "/etc/ssl/certs/openstreetmap.pem")
- subscribes :restart, resources(:file => "/etc/ssl/private/openstreetmap.key")
+ subscribes :restart, "execute[/etc/ssl/certs/exim.pem]"
end
relay_to_domains = node[:exim][:relay_to_domains]
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
+
+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] || {}
+
+ if details[:status] and account["email"]
+ node.default[:exim][:aliases][name] = account["email"]
+ end
+end
+
+if node[:exim][:private_aliases]
+ aliases = data_bag_item("exim", "aliases")
+
+ aliases[node[:exim][:private_aliases]].each do |name,address|
+ node.default[:exim][:aliases][name] = address
+ end
end
template "/etc/aliases" do