X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/339e24f1e3e2275712e5b3e2163c403113b4605d..2012763fa907ef6b75ac6d3272f698846e9ecce4:/cookbooks/exim/recipes/default.rb diff --git a/cookbooks/exim/recipes/default.rb b/cookbooks/exim/recipes/default.rb index 8a1fd5efb..8c61b2da1 100644 --- a/cookbooks/exim/recipes/default.rb +++ b/cookbooks/exim/recipes/default.rb @@ -25,12 +25,20 @@ package %w[ exim4 openssl ssl-cert + mailutils ] package "exim4-daemon-heavy" do only_if { ::File.exist?("/var/run/clamav/clamd.ctl") } end +group "Debian-exim" do + action :modify + members "clamav" + append true + only_if { ::File.exist?("/var/run/clamav/clamd.ctl") } +end + group "ssl-cert" do action :modify members "Debian-exim" @@ -77,19 +85,7 @@ end relay_from_hosts = node[:exim][:relay_from_hosts] if node[:exim][:smarthost_name] - search(:node, "roles:gateway") do |gateway| - allowed_ips = gateway.interfaces(:role => :internal).map do |interface| - "#{interface[:network]}/#{interface[:prefix]}" - end - - node.default[:networking][:wireguard][:peers] << { - :public_key => gateway[:networking][:wireguard][:public_key], - :allowed_ips => allowed_ips, - :endpoint => "#{gateway.name}:51820" - } - end - - search(:node, "exim_smarthost_via:#{node[:exim][:smarthost_name]}\\:*").each do |host| + search(:node, "exim_smarthost_via:*?").each do |host| relay_from_hosts |= host.ipaddresses(:role => :external) end @@ -216,11 +212,20 @@ remote_directory "/etc/exim4/noreply" do purge true end +template "/etc/mail.rc" do + source "mail.rc.erb" + owner "root" + group "root" + mode "644" +end + munin_plugin "exim_mailqueue" munin_plugin "exim_mailstats" prometheus_exporter "exim" do port 9636 + user "Debian-exim" + protect_proc "default" end if node[:exim][:smarthost_name]