]> git.openstreetmap.org Git - chef.git/blob - cookbooks/exim/recipes/default.rb
Add test for mail role
[chef.git] / cookbooks / exim / recipes / default.rb
1 #
2 # Cookbook:: exim
3 # Recipe:: default
4 #
5 # Copyright:: 2011, OpenStreetMap Foundation
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     https://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19
20 include_recipe "munin"
21 include_recipe "networking"
22
23 package %w[
24   exim4
25   openssl
26   ssl-cert
27 ]
28
29 package "exim4-daemon-heavy" do
30   only_if { ::File.exist?("/var/run/clamav/clamd.ctl") }
31 end
32
33 group "ssl-cert" do
34   action :modify
35   members "Debian-exim"
36   append true
37 end
38
39 if node[:exim][:certificate_names]
40   include_recipe "apache"
41
42   apache_site node[:exim][:certificate_names].first do
43     template "apache.erb"
44     variables :aliases => node[:exim][:certificate_names].drop(1)
45   end
46
47   ssl_certificate node[:exim][:certificate_names].first do
48     domains node[:exim][:certificate_names]
49     notifies :restart, "service[exim4]"
50   end
51 else
52   openssl_x509_certificate "/etc/ssl/certs/exim.pem" do
53     key_file "/etc/ssl/private/exim.key"
54     owner "root"
55     group "ssl-cert"
56     mode 0o640
57     org "OpenStreetMap"
58     email "postmaster@openstreetmap.org"
59     common_name node[:fqdn]
60     expire 3650
61     notifies :restart, "service[exim4]"
62   end
63 end
64
65 service "exim4" do
66   action [:enable, :start]
67   supports :status => true, :restart => true, :reload => true
68 end
69
70 relay_to_domains = node[:exim][:relay_to_domains]
71
72 node[:exim][:routes].each_value do |route|
73   relay_to_domains |= route[:domains] if route[:host]
74 end
75
76 relay_from_hosts = node[:exim][:relay_from_hosts]
77
78 if node[:exim][:smarthost_name]
79   search(:node, "exim_smarthost_via:#{node[:exim][:smarthost_name]}\\:*").each do |host|
80     relay_from_hosts |= host.ipaddresses(:role => :external)
81   end
82
83   domains = node[:exim][:certificate_names].select { |c| c =~ /^a\.mx\./ }.collect { |c| c.sub(/^a\.mx./, "") }
84   primary_domain = domains.first
85
86   directory "/srv/mta-sts.#{primary_domain}" do
87     owner "root"
88     group "root"
89     mode 0o755
90   end
91
92   domains.each do |domain|
93     template "/srv/mta-sts.#{primary_domain}/#{domain}.txt" do
94       source "mta-sts.erb"
95       owner "root"
96       group "root"
97       mode 0o644
98       variables :domain => domain
99     end
100   end
101
102   ssl_certificate "mta-sts.#{primary_domain}" do
103     domains domains.collect { |d| "mta-sts.#{d}" }
104     notifies :reload, "service[apache2]"
105   end
106
107   apache_site "mta-sts.#{primary_domain}" do
108     template "apache-mta-sts.erb"
109     directory "/srv/mta-sts.#{primary_domain}"
110     variables :domains => domains
111   end
112 end
113
114 file "/etc/exim4/blocked-senders" do
115   owner "root"
116   group "Debian-exim"
117   mode 0o644
118 end
119
120 if node[:exim][:dkim_selectors]
121   keys = data_bag_item("exim", "dkim")
122
123   template "/etc/exim4/dkim-selectors" do
124     owner "root"
125     source "dkim-selectors.erb"
126     group "Debian-exim"
127     mode 0o644
128   end
129
130   directory "/etc/exim4/dkim-keys" do
131     owner "root"
132     group "Debian-exim"
133     mode 0o755
134   end
135
136   node[:exim][:dkim_selectors].each do |domain, selector|
137     file "/etc/exim4/dkim-keys/#{domain}" do
138       content keys[domain].join("\n")
139       owner "root"
140       group "Debian-exim"
141       mode 0o640
142     end
143   end
144 end
145
146 template "/etc/exim4/exim4.conf" do
147   source "exim4.conf.erb"
148   owner "root"
149   group "Debian-exim"
150   mode 0o644
151   variables :relay_to_domains => relay_to_domains.sort,
152             :relay_from_hosts => relay_from_hosts.sort
153   notifies :restart, "service[exim4]"
154 end
155
156 search(:accounts, "*:*").each do |account|
157   name = account["id"]
158   details = node[:accounts][:users][name] || {}
159
160   if details[:status] && account["email"]
161     node.default[:exim][:aliases][name] = account["email"]
162   end
163 end
164
165 if node[:exim][:private_aliases]
166   aliases = data_bag_item("exim", "aliases")
167
168   aliases[node[:exim][:private_aliases]].each do |name, address|
169     node.default[:exim][:aliases][name] = address
170   end
171 end
172
173 template "/etc/aliases" do
174   source "aliases.erb"
175   owner "root"
176   group "root"
177   mode 0o644
178 end
179
180 remote_directory "/etc/exim4/noreply" do
181   source "noreply"
182   owner "root"
183   group "Debian-exim"
184   mode 0o755
185   files_owner "root"
186   files_group "Debian-exim"
187   files_mode 0o755
188   purge true
189 end
190
191 munin_plugin "exim_mailqueue"
192 munin_plugin "exim_mailstats"
193
194 if node[:exim][:smarthost_name]
195   node[:exim][:daemon_smtp_ports].each do |port|
196     firewall_rule "accept-inbound-smtp-#{port}" do
197       action :accept
198       source "net"
199       dest "fw"
200       proto "tcp:syn"
201       dest_ports port
202       source_ports "1024:"
203     end
204   end
205 else
206   node[:exim][:daemon_smtp_ports].each do |port|
207     firewall_rule "accept-inbound-smtp-#{port}" do
208       action :accept
209       source "bm:mail.openstreetmap.org"
210       dest "fw"
211       proto "tcp:syn"
212       dest_ports port
213       source_ports "1024:"
214     end
215   end
216 end
217
218 if node[:exim][:smarthost_via]
219   firewall_rule "deny-outbound-smtp" do
220     action :reject
221     source "fw"
222     dest "net"
223     proto "tcp:syn"
224     dest_ports "smtp"
225   end
226 end