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
+ not_if do
+ File.exist?("/etc/ssl/certs/exim.pem") && File.exist?("/etc/ssl/private/exim.key")
+ end
end
execute "/etc/ssl/certs/exim.pem" do
user "root"
group "ssl-cert"
not_if do
- File.exists?("/etc/ssl/certs/exim.pem") and File.exists?("/etc/ssl/private/exim.key")
+ File.exist?("/etc/ssl/certs/exim.pem") && File.exist?("/etc/ssl/private/exim.key")
end
end
service "exim4" do
- action [ :enable, :start ]
+ action [:enable, :start]
supports :status => true, :restart => true, :reload => true
subscribes :restart, "execute[/etc/ssl/certs/exim.pem]"
end
relay_to_domains = node[:exim][:relay_to_domains]
node[:exim][:routes].each_value do |route|
- relay_to_domains = relay_to_domains | route[:domains] if route[:host]
+ relay_to_domains |= route[:domains] if route[:host]
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|
- relay_from_hosts = relay_from_hosts | host.ipaddresses(:role => :external)
+ relay_from_hosts |= host.ipaddresses(:role => :external)
end
end
name = account["id"]
details = node[:accounts][:users][name] || {}
- if details[:status] and account["email"]
+ if details[:status] && 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|
+ aliases[node[:exim][:private_aliases]].each do |name, address|
node.default[:exim][:aliases][name] = address
end
end
end
end
-if node[:exim][:smarthost_via]
+if node[:exim][:smarthost_via] # ~FC023
firewall_rule "deny-outbound-smtp" do
action :reject
source "fw"