]> git.openstreetmap.org Git - chef.git/blob - cookbooks/exim/recipes/default.rb
Scrub last munin traces
[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 "networking"
21 include_recipe "prometheus"
22
23 package %w[
24   exim4
25   openssl
26   ssl-cert
27   mailutils
28 ]
29
30 package "exim4-daemon-heavy" do
31   only_if { ::File.exist?("/var/run/clamav/clamd.ctl") }
32 end
33
34 group "Debian-exim" do
35   action :modify
36   members "clamav"
37   append true
38   only_if { ::File.exist?("/var/run/clamav/clamd.ctl") }
39 end
40
41 group "ssl-cert" do
42   action :modify
43   members "Debian-exim"
44   append true
45 end
46
47 if node[:exim][:certificate_names]
48   include_recipe "apache"
49
50   apache_site node[:exim][:certificate_names].first do
51     template "apache.erb"
52     variables :aliases => node[:exim][:certificate_names].drop(1)
53   end
54
55   ssl_certificate node[:exim][:certificate_names].first do
56     domains node[:exim][:certificate_names]
57     notifies :restart, "service[exim4]"
58   end
59 else
60   openssl_x509_certificate "/etc/ssl/certs/exim.pem" do
61     key_file "/etc/ssl/private/exim.key"
62     owner "root"
63     group "ssl-cert"
64     mode "640"
65     org "OpenStreetMap"
66     email "postmaster@openstreetmap.org"
67     common_name node[:fqdn]
68     expire 3650
69     notifies :restart, "service[exim4]"
70   end
71 end
72
73 service "exim4" do
74   action [:enable, :start]
75   supports :status => true, :restart => true, :reload => true
76 end
77
78 relay_to_domains = node[:exim][:relay_to_domains]
79
80 node[:exim][:routes].each_value do |route|
81   relay_to_domains |= route[:domains] if route[:host]
82 end
83
84 relay_from_hosts = node[:exim][:relay_from_hosts]
85
86 if node[:exim][:smarthost_name]
87   search(:node, "exim_smarthost_via:*?").each do |host|
88     relay_from_hosts |= host.ipaddresses(:role => :external)
89   end
90
91   domains = node[:exim][:certificate_names].select { |c| c =~ /^a\.mx\./ }.collect { |c| c.sub(/^a\.mx./, "") }
92   primary_domain = domains.first
93
94   directory "/srv/mta-sts.#{primary_domain}" do
95     owner "root"
96     group "root"
97     mode "755"
98   end
99
100   domains.each do |domain|
101     template "/srv/mta-sts.#{primary_domain}/#{domain}.txt" do
102       source "mta-sts.erb"
103       owner "root"
104       group "root"
105       mode "644"
106       variables :domain => domain
107     end
108   end
109
110   ssl_certificate "mta-sts.#{primary_domain}" do
111     domains domains.collect { |d| "mta-sts.#{d}" }
112     notifies :reload, "service[apache2]"
113   end
114
115   apache_site "mta-sts.#{primary_domain}" do
116     template "apache-mta-sts.erb"
117     directory "/srv/mta-sts.#{primary_domain}"
118     variables :domains => domains
119   end
120 end
121
122 file "/etc/exim4/blocked-senders" do
123   owner "root"
124   group "Debian-exim"
125   mode "644"
126 end
127
128 file "/etc/exim4/blocked-sender-domains" do
129   owner "root"
130   group "Debian-exim"
131   mode "644"
132 end
133
134 if node[:exim][:dkim_selectors]
135   keys = data_bag_item("exim", "dkim")
136
137   template "/etc/exim4/dkim-domains" do
138     owner "root"
139     source "dkim-domains.erb"
140     group "Debian-exim"
141     mode "644"
142   end
143
144   template "/etc/exim4/dkim-selectors" do
145     owner "root"
146     source "dkim-selectors.erb"
147     group "Debian-exim"
148     mode "644"
149   end
150
151   directory "/etc/exim4/dkim-keys" do
152     owner "root"
153     group "Debian-exim"
154     mode "755"
155   end
156
157   node[:exim][:dkim_selectors].each do |domain, _selector|
158     file "/etc/exim4/dkim-keys/#{domain}" do
159       content keys[domain].join("\n")
160       owner "root"
161       group "Debian-exim"
162       mode "640"
163     end
164   end
165 end
166
167 template "/etc/default/exim4" do
168   source "default.erb"
169   owner "root"
170   group "root"
171   mode "044"
172   notifies :restart, "service[exim4]"
173 end
174
175 template "/etc/exim4/exim4.conf" do
176   source "exim4.conf.erb"
177   owner "root"
178   group "Debian-exim"
179   mode "644"
180   variables :relay_to_domains => relay_to_domains.sort,
181             :relay_from_hosts => relay_from_hosts.sort
182   notifies :restart, "service[exim4]"
183 end
184
185 search(:accounts, "*:*").each do |account|
186   name = account["id"]
187   details = node[:accounts][:users][name] || {}
188
189   if details[:status] && account["email"]
190     node.default[:exim][:aliases][name] = account["email"]
191   end
192 end
193
194 if node[:exim][:private_aliases]
195   aliases = data_bag_item("exim", "aliases")
196
197   aliases[node[:exim][:private_aliases]].each do |name, address|
198     node.default[:exim][:aliases][name] = address
199   end
200 end
201
202 template "/etc/aliases" do
203   source "aliases.erb"
204   owner "root"
205   group "root"
206   mode "644"
207 end
208
209 remote_directory "/etc/exim4/noreply" do
210   source "noreply"
211   owner "root"
212   group "Debian-exim"
213   mode "755"
214   files_owner "root"
215   files_group "Debian-exim"
216   files_mode "755"
217   purge true
218 end
219
220 template "/etc/mail.rc" do
221   source "mail.rc.erb"
222   owner "root"
223   group "root"
224   mode "644"
225 end
226
227 prometheus_exporter "exim" do
228   port 9636
229   user "Debian-exim"
230   protect_proc "default"
231 end
232
233 if node[:exim][:smarthost_name]
234   firewall_rule "accept-inbound-smtp" do
235     action :accept
236     context :incoming
237     protocol :tcp
238     dest_ports node[:exim][:daemon_smtp_ports]
239     source_ports "1024-65535"
240   end
241 else
242   smarthosts = []
243
244   search(:node, "exim_smarthost_name:*?").each do |host|
245     smarthosts |= host.ipaddresses(:role => :external)
246   end
247
248   firewall_rule "accept-inbound-smtp" do
249     action :accept
250     context :incoming
251     protocol :tcp
252     source smarthosts
253     dest_ports node[:exim][:daemon_smtp_ports]
254     source_ports "1024-65535"
255     not_if { smarthosts.empty? }
256   end
257 end
258
259 if node[:exim][:smarthost_via]
260   firewall_rule "deny-outbound-smtp" do
261     action :reject
262     context :outgoing
263     protocol :tcp
264     dest_ports "smtp"
265   end
266 end