]> git.openstreetmap.org Git - chef.git/blob - cookbooks/exim/templates/default/default.erb
Fix exim daemon options for Ubuntu
[chef.git] / cookbooks / exim / templates / default / default.erb
1 # DO NOT EDIT - This file is being maintained by Chef
2
3 <% if node.platform?("ubuntu") && node[:lsb][:release].to_f >= 22.04 -%>
4 # options for update-exim4.conf
5 UPEX4OPTS=''
6 # options for exim4
7 EXIMSERVICE='-bdf -q30s'
8 <% else -%>
9 # 'combined' -   one daemon running queue and listening on SMTP port
10 # 'no'       -   no daemon running the queue
11 # 'separate' -   two separate daemons
12 # 'ppp'      -   only run queue with /etc/ppp/ip-up.d/exim4.
13 # 'nodaemon' - no daemon is started at all.
14 # 'queueonly' - only a queue running daemon is started, no SMTP listener.
15 # setting this to 'no' will also disable queueruns from /etc/ppp/ip-up.d/exim4
16 QUEUERUNNER='combined'
17 # how often should we run the queue
18 QUEUEINTERVAL='30s'
19 # options common to quez-runner and listening daemon
20 COMMONOPTIONS=''
21 # more options for the daemon/process running the queue (applies to the one
22 # started in /etc/ppp/ip-up.d/exim4, too.
23 QUEUERUNNEROPTIONS=''
24 # special flags given to exim directly after the -q. See exim(8)
25 QFLAGS=''
26 # options for daemon listening on port 25
27 SMTPLISTENEROPTIONS=''
28 <% end -%>
29 # only warn once about each error
30 E4BCD_WATCH_PANICLOG='once'