]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/exim/templates/eximconf.erb
whitespace cleanup
[dsa-puppet.git] / modules / exim / templates / eximconf.erb
1 ##
2 ## THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE.
3 ## USE: git clone git+ssh://$USER@puppet.debian.org/srv/puppet.debian.org/git/dsa-puppet.git
4 ##
5
6 # This is the main exim4 configuration file based on the 28.08.05 version by
7 # ametzler
8
9 # The configuration file uses a set of rules to generate an
10 # acceptable mail environment for debian.org machines. It deviates
11 # considerably from what could be considered a standard exim configuration.
12
13 # This configuration file brings in the necessary information from
14 # other databases stored in /etc/exim/ and the files distributed by ud-ldap
15
16 # This file is independent of the local host, it should not be changed
17 # per machine. primary_hostname is used in all places that require per-host 
18 # settings.
19
20 # The configuration files in /etc/exim are as follows:
21 #  locals - This is a list of domains that are considered local. A local
22 #           domain is essential one that deliveries to /var/mail
23 #           will be attempted. The users available for local delivery
24 #           comes from /etc/passwd and /etc/aliases. Wildcards are not
25 #           permitted.
26 #  virtualdomains - This is a list of all virtual domains. A virtual domain
27 #           is much like a local domain, execpt that the delivery location
28 #           and allowed set of users is controlled by a virtual domain
29 #           alias file and not /etc/passwd. Wildcards are permitted
30 #  relayhosts - Hostnames that can send any arbitarily addressed mail to
31 #           us. This is primarily only usefull for emergancy 'queue
32 #           flushing' operations, but should be populated with a list
33 #           of trusted machines. Wildcards are not permitted
34 #  bsmtp_domains - Domains that we deliver locally via bsmtp
35 <%- if nodeinfo['mailrelay'] -%>
36 #  mailhubdomains - Domains for which we are the MX, but the mail is relayed
37 #           elsewhere.  This is designed for use with small volume or
38 #           restricted machines that need to use a smarthost for mail
39 #           traffic.  We will relay for them based on ssl cert validation
40 #           but we need to teach exim how to route the mail to them.  This is
41 #           that list.
42 <%- end -%>
43
44 # Exim's wildcard mechanism is a bit odd in that to say "any address in
45 # debian.org including debian.org" you must use two patterns,
46 #   *.debian.org
47 #   debian.org
48 # Also you can only place a * before a . and as the first char in a string.
49 # Wildcards always match last so they may be used as a catchall.
50
51 # Further details can be found in each of the files.
52
53 # Usefull exim commands:
54 #  exim4 -qf  - Try sending all messages right now, including frozen ones
55 #  exim4 -bt foo@blah - Write what exim would do if it saw the address
56 #                      Great for testing virtual domains and forward files
57
58 # Special Features for users:
59 # .forward-foo - is understood as an extension address for bar-foo@cow.com
60 # .forward-default - is understood to be a catch all for bar-*@cow.com
61 # .procmailrc - with no .forward file invokes procmail for delivery
62 #               automatically.
63
64 # For virtual domains the first lookup is done against a linear text
65 # database called 'aliases', then .forward files are consulted. Exim
66 # filtering is available for these .forward files only. .forward-default
67 # is the universal catch all for everything not handled.
68
69 # Heuristic check (none bad enough to cause a hard reject, but in aggregate
70 # will trigger things like rcpt to rate limiting or possibly a reject if
71 # enough hits are triggered.
72 #
73 # value is stored in acl_c_scr
74
75 ######################################################################
76 #                    MAIN CONFIGURATION SETTINGS                     #
77 ######################################################################
78
79 <%- if nodeinfo.has_key?('heavy_exim') and not nodeinfo['heavy_exim'].empty? -%>
80 perl_startup = do '/etc/exim4/exim_surbl.pl'
81 <%- end -%>
82
83 # These options specify the Access Control Lists (ACLs) that
84 # are used for incoming SMTP messages - after the RCPT and DATA
85 # commands, respectively.
86
87 acl_smtp_helo = check_helo
88 acl_smtp_rcpt = ${if ={$interface_port}{587} {check_submission}{check_recipient}}
89 acl_smtp_data = check_message
90 <%- if nodeinfo.has_key?('heavy_exim') and not nodeinfo['heavy_exim'].empty? -%>
91 acl_smtp_mime = acl_check_mime
92 <%- end -%>
93 acl_smtp_predata = acl_check_predata
94
95 # accept domain literal syntax in e-mail addresses. To actually make use of
96 # this a router is also required
97 allow_domain_literals = true
98
99 # This setting defines a named domain list called
100 # local_domains. It will be referenced
101 # later on by the syntax "+local_domains".
102 # Other domain and host lists may follow.
103 # @ is the local FQDN, @[] matches the IP adress of any local interface.
104
105 domainlist local_domains = @ : \
106     @[] : \
107     localhost : \
108     ${if exists {/etc/exim4/locals}{lsearch;/etc/exim4/locals}}
109
110 domainlist virtual_domains = partial-lsearch;/etc/exim4/virtualdomains
111
112 domainlist submission_domains = ${if exists {/etc/exim4/submission-domains}{/etc/exim4/submission-domains}{}}
113
114 domainlist bsmtp_domains = ${if exists {/etc/exim4/bsmtp}{partial-lsearch;/etc/exim4/bsmtp}{}}
115
116 domainlist handled_domains = +local_domains : +virtual_domains : +bsmtp_domains
117
118 localpartlist local_only_users = lsearch;/etc/exim4/localusers
119
120 localpartlist postmasterish = postmaster : abuse : hostmaster : root
121
122 hostlist debianhosts = 127.0.0.1 : /var/lib/misc/thishost/debianhosts
123
124 hostlist reservedaddrs = <%= nodeinfo['reservedaddrs'] %>
125
126 <%- if nodeinfo['mailrelay'] -%>
127 # Domains we relay for; that is domains that aren't considered local but we 
128 # accept mail for them.
129 domainlist mailhubdomains = lsearch;/etc/exim4/manualroute
130
131 <%- end -%>
132 <%- if has_variable?("exim_ssl_certs") && exim_ssl_certs == "true" -%>
133 tls_certificate = /etc/exim4/ssl/thishost.crt
134 tls_privatekey = /etc/exim4/ssl/thishost.key
135 tls_try_verify_hosts = *
136 tls_verify_certificates = /etc/exim4/ssl/ca.crt
137 tls_crl = /etc/exim4/ssl/ca.crl
138
139 <%- end -%>
140 # The setting below causes Exim to do a reverse DNS lookup on all incoming
141 # IP calls, in order to get the true host name. If you feel this is too
142 # expensive, you can specify the networks for which a lookup is done, or
143 # remove the setting entirely.
144 host_lookup = *
145 # dns_ipv4_lookup = !localhost (disabled upon sgrans request, zobel, 2010-03-16)
146
147 # If this option is set, then any process that is running as one of the
148 # listed users may pass a message to Exim and specify the sender's
149 # address using the "-f" command line option, without Exim's adding a
150 # "Sender" header.
151
152 untrusted_set_sender = *
153
154 # Some operating systems use the "gecos" field in the system password file
155 # to hold other information in addition to users' real names. Exim looks up
156 # this field when it is creating "sender" and "from" headers. If these options
157 # are set, exim uses "gecos_pattern" to parse the gecos field, and then
158 # expands "gecos_name" as the user's name. $1 etc refer to sub-fields matched
159 # by the pattern.
160
161 gecos_pattern = ^([^,:]*)
162 gecos_name = $1
163
164 # This tells exim to immediately discard error messages (ie double bounces).
165 ignore_bounce_errors_after = 0s
166 auto_thaw = 1d
167 timeout_frozen_after=14d
168
169 message_size_limit = 100M
170 message_logs = false
171 smtp_accept_max_per_host = ${if match_ip {$sender_host_address}{+debianhosts}{0}{7}}
172 <%- if nodeinfo.has_key?('heavy_exim') and not nodeinfo['heavy_exim'].empty? -%>
173 smtp_accept_max = 300
174 smtp_accept_queue = 200
175 smtp_accept_queue_per_connection = 50
176 smtp_accept_reserve = 25
177 <%- else -%>
178 smtp_accept_max = 30
179 smtp_accept_queue = 20
180 smtp_accept_queue_per_connection = 10
181 smtp_accept_reserve = 5
182 <%- end -%>
183 smtp_reserve_hosts = +debianhosts
184
185 split_spool_directory = true
186 check_spool_inodes = 200
187 check_spool_space  = 20M
188
189 delay_warning =
190
191 <%- if nodeinfo.has_key?('heavy_exim') and not nodeinfo['heavy_exim'].empty? -%>
192 queue_run_max = 50
193 deliver_queue_load_max = 50
194 queue_only_load = 35
195 smtp_load_reserve = 20
196 <%- else -%>
197 queue_run_max = 5
198 deliver_queue_load_max = 10
199 queue_only_load = 5
200 <%- end -%>
201 queue_list_requires_admin = false
202
203 <%- if has_variable?("clamd") && clamd == "true" -%>
204 av_scanner = clamd:/var/run/clamav/clamd.ctl
205 <%- end -%>
206
207 <%= 
208 ports = []
209 out = "daemon_smtp_ports = "
210 ports << 25
211
212 if nodeinfo['bugsmaster'] or nodeinfo['bugsmx']
213   ports << 587
214 end
215
216 if not nodeinfo['mail_port'].to_s.empty?
217   ports << nodeinfo['mail_port']
218 end
219
220 if nodeinfo['mailrelay']
221   ports << nodeinfo['smarthost_port']
222 end
223
224 out += ports.uniq.sort.join(" : ")
225 out
226 %>
227
228 admin_groups = adm
229 remote_sort_domains = *.debian.org:*.debian.net
230
231 pipelining_advertise_hosts = !*
232 <%- if has_variable?("exim_ssl_certs") && exim_ssl_certs == "true" -%>
233 tls_advertise_hosts = *
234 <%- end -%>
235 smtp_enforce_sync = true
236
237 log_selector = +tls_cipher +tls_peerdn +queue_time +deliver_time +smtp_connection +smtp_incomplete_transaction +smtp_confirmation
238
239 received_header_text = Received: ${if def:sender_rcvhost {from $sender_rcvhost\n\t}\
240                                  {${if def:sender_ident {from ${quote_local_part:$sender_ident} }}${if def:sender_helo_name {(helo=$sender_helo_name)\n\t}}}}\
241                                  ${if and {{eq {$tls_certificate_verified}{1}}{def:tls_peerdn}}{from $tls_peerdn (verified)\n\t}}\
242                                  by $primary_hostname ${if def:received_protocol {with $received_protocol}} ${if def:tls_cipher {($tls_cipher)\n\t}}\
243                                  (Exim $version_number)\n\t\
244                                  ${if def:sender_address {(envelope-from <$sender_address>)\n\t}}\
245                                  id $message_exim_id${if def:received_for {\n\tfor $received_for}}
246
247 # macro definitions.
248 # Do not wrap!
249 VDOMAINDATA = ${lookup{$domain}partial-lsearch{/etc/exim4/virtualdomains}{$value}}
250 WHITELIST = ${if match_domain{$domain}{+virtual_domains}{\
251                ${if exists {/srv/$domain/mail/whitelist}{\
252                 ${lookup{$local_part}lsearch{/srv/$domain/mail/whitelist}{$value}{}}\
253                 }{}}\
254                }{${lookup{$local_part}lsearch{/etc/exim4/whitelist}{$value}{}} : ${lookup{$local_part}lsearch{/var/lib/misc/$primary_hostname/mail-whitelist}{$value}{}}}}
255 GREYLIST_LOCAL_PARTS = ${if match_domain{$domain}{+virtual_domains}\
256                        {${if exists {${extract{directory}{VDOMAINDATA}{${value}/grey_users}}}\
257                        {${lookup{$local_part}lsearch*{${extract{directory}{VDOMAINDATA}{${value}/grey_users}}}{$local_part}{}}}{}}}\
258                        {${lookup{$local_part}lsearch{/etc/exim4/grey_users}{$local_part}{}} : \
259                        ${lookup{$local_part}lsearch{/var/lib/misc/$primary_hostname/mail-greylist}{$local_part}{}}}}
260 RT_QUEUE_MAP = /srv/rt.debian.org/mail/rt_queue_map
261
262 ######################################################################
263 #                        ACL CONFIGURATION                           #
264 ######################################################################
265 begin acl
266
267 acl_spamlovers:
268   # There are a few profiles that don't want much smtp time checking of
269   # mail.  It's easier to track them in one place
270
271   accept  condition      = ${if eq {$acl_m_prf}{PopconMail}}
272   accept  condition      = ${if eq {$acl_m_prf}{BugsMail}}
273   deny
274
275 acl_getprofile:
276   # This is a bad hack to reset the variable, by defining it be something
277   # never referenced.
278
279   warn    set acl_m_rprf = $acl_m_undefined
280
281   warn    recipients     = survey@popcon.debian.org
282           set acl_m_rprf = PopconMail
283
284   accept  condition      = ${if eq {$acl_m_rprf}{}{no}{yes}}
285
286   warn    local_parts    = +local_only_users
287           domains        = +local_domains
288           hosts          = !+debianhosts
289           set acl_m_rprf = localonly
290
291   accept  condition      = ${if eq {$acl_m_rprf}{}{no}{yes}}
292
293 <%- if nodeinfo['rtmaster'] -%>
294   warn    domains        = rt.debian.org
295           set acl_m_rprf = RTMail
296
297   accept  condition      = ${if eq {$acl_m_rprf}{}{no}{yes}}
298
299 <%- end -%>
300 <%- if nodeinfo['bugsmx'] -%>
301   warn    domains        = bugs.debian.org
302           set acl_m_rprf = BugsMail
303
304   accept  condition      = ${if eq {$acl_m_rprf}{}{no}{yes}}
305
306 <%- end -%>
307 <%- if nodeinfo['packagesmaster'] -%>
308   warn    domains        = packages.debian.org
309           set acl_m_rprf = PackagesMail
310
311   accept  condition      = ${if eq {$acl_m_rprf}{}{no}{yes}}
312
313 <%- end -%>
314 <%- if nodeinfo['packagesqamaster'] -%>
315   warn    recipients     = owner@packages.qa.debian.org : postmaster@packages.qa.debian.org
316           set acl_m_rprf = PTSOwner
317
318   accept  condition      = ${if eq {$acl_m_rprf}{}{no}{yes}}
319
320   warn    senders        = :
321           domains        = packages.qa.debian.org
322           condition      = ${if match{$local_part}{\N^bounces+\N}}
323           set acl_m_rprf = PTSListBounce
324
325   accept  condition      = ${if eq {$acl_m_rprf}{}{no}{yes}}
326
327   warn    domains        = packages.qa.debian.org
328           set acl_m_rprf = PTSMail
329
330   accept  condition      = ${if eq {$acl_m_rprf}{}{no}{yes}}
331
332 <%- end -%>
333   warn    recipients     = change@db.debian.org : changes@db.debian.org : chpasswd@db.debian.org : ping@db.debian.org : recommend@nm.debian.org
334           set acl_m_rprf = DBSignedMail
335
336   accept  condition      = ${if eq {$acl_m_rprf}{}{no}{yes}}
337
338   warn    domains        = +virtual_domains
339           condition      = ${if exists {${extract{directory}{VDOMAINDATA}{${value}/contentinspectionaction}}}}
340           condition      = ${if eq{${lookup{$local_part}lsearch*{${extract{directory}{VDOMAINDATA}{${value}/contentinspectionaction}}}{$value}{}}}{markup}}
341           log_message    = $local_part@$domain: markup
342           set acl_m_rprf = markup
343
344   accept  condition      = ${if eq {$acl_m_rprf}{}{no}{yes}}
345
346   warn    condition      = ${if eq{${lookup{$local_part}cdb{/var/lib/misc/${primary_hostname}/mail-contentinspectionaction.cdb}{$value}{}}}{markup}}
347           log_message    = $local_part@$domain: markup
348           set acl_m_rprf = markup
349
350   accept  condition      = ${if eq {$acl_m_rprf}{}{no}{yes}}
351
352   warn    condition      = ${if eq{${lookup{$local_part}cdb{/var/lib/misc/${primary_hostname}/mail-contentinspectionaction.cdb}{$value}{}}}{blackhole}}
353           log_message    = $local_part@$domain: blackhole
354           set acl_m_rprf = blackhole
355
356   accept  condition      = ${if eq {$acl_m_rprf}{}{no}{yes}}
357
358   warn    domains        = +virtual_domains
359           condition      = ${if exists {${extract{directory}{VDOMAINDATA}{${value}/contentinspectionaction}}}}
360           condition      = ${if eq{${lookup{$local_part}lsearch*{${extract{directory}{VDOMAINDATA}{${value}/contentinspectionaction}}}{$value}{}}}{blackhole}}
361           log_message    = $local_part@$domain: blackhole
362           set acl_m_rprf = blackhole
363
364   accept  condition      = ${if eq {$acl_m_rprf}{}{no}{yes}}
365
366   warn    set acl_m_rprf = normal
367
368   accept
369
370 check_helo:
371
372   warn    set acl_c_scr    = 0
373
374 <%- if nodeinfo['mailrelay'] -%>
375   accept  verify   = certificate
376
377 <%- end -%>
378 <%- if nodeinfo['smarthost'].empty? -%>
379   # These are in HELO acl so that they are only run once.  They increment a counter,
380   # so we don't want it to increment per rcpt to.
381
382   warn    dnslists       = list.dnswl.org&0.0.0.3
383           log_message    = Hit on list.dnswl.org for $sender_host_address
384           set acl_c_scr  = ${eval:$acl_c_scr-30}
385
386   warn    dnslists       = list.dnswl.org&0.0.0.2
387           log_message    = Hit on list.dnswl.org for $sender_host_address
388           set acl_c_scr  = ${eval:$acl_c_scr-20}
389
390   warn    dnslists       = list.dnswl.org
391           log_message    = Hit on list.dnswl.org for $sender_host_address
392           set acl_c_scr  = ${eval:$acl_c_scr-10}
393
394   warn    condition      = ${if isip {$sender_helo_name}{true}{false}}
395           log_message    = remote host used IP address in HELO/EHLO greeting
396           set acl_c_scr  = ${eval:$acl_c_scr+20}
397
398   warn    !hosts         = +debianhosts
399           condition      = ${if eq{$host_lookup_failed}{1}}
400           set acl_c_scr  = ${eval:$acl_c_scr+20}
401
402   warn    !hosts         = +debianhosts
403           condition      = ${if eq{$host_lookup_failed}{0}}
404           condition      = ${if match{$sender_host_name}{\N(^[^\.]*[0-9]\-+[0-9]|^[^\.]*[0-9]{5,}[^\.]|^([^\.]+\.)?[0-9][^ \.]*\.[^\.]+\..+\.[a-z]|^[^\.]*[0-9]\.[^\.]*[0-9]-[0-9]|^(dyn|cable|dhcp|dialup|ppp|adsl)[^\.]*[0-9])\N}}
405           set acl_c_scr  = ${eval:$acl_c_scr+20}
406
407   warn    !hosts         = +debianhosts
408           condition      = ${if match{$sender_helo_name}{\N(^[^\.]*[0-9]\-+[0-9]|^[^\.]*[0-9]{5,}[^\.]|^([^\.]+\.)?[0-9][^ \.]*\.[^\.]+\..+\.[a-z]|^[^\.]*[0-9]\.[^\.]*[0-9]-[0-9]|^(dyn|cable|dhcp|dialup|ppp|adsl)[^\.]*[0-9])\N}}
409           set acl_c_scr  = ${eval:$acl_c_scr+20}
410
411   warn    !hosts         = +debianhosts
412           dnslists       = dul.dnsbl.sorbs.net
413           set acl_c_scr  = ${eval:$acl_c_scr+15}
414
415   # If the sender's helo name is empty, the message will be rejected later
416   # because the helo is empty.  If the rDNS lookup failed, we are already
417   # going to greylist them, so no sense worrying about it here.  Finally,
418   # if rDNS does not match helo name (both lower cased first), greylist.
419
420   warn    !hosts         = +debianhosts
421           condition      = ${if eq {$host_lookup_failed}{1}{no}{yes}}
422           condition      = ${if def:sender_helo_name {yes}{no}}
423           condition      = ${if eq {${lc:$sender_helo_name}}{${lc:$sender_host_name}}{no}{yes}}
424           log_message    = HELO doesn't match rDNS
425           set acl_c_scr  = ${eval:$acl_c_scr+8}
426
427   # Regexes of doom
428   # matches 098325879 - looks fishy
429
430   warn condition        = ${if and { \
431                                      { !match{$sender_helo_name}{\N^\[.+\]$\N} } \
432                                      { !match{$sender_helo_name}{\N^(?i)((?=[^-])[a-z0-9-]*[a-z0-9]\.)+[a-z]{2,6}$\N} } \
433                                     } \
434                             }
435        log_message      = non-FQDN HELO
436        set acl_c_scr    = ${eval:$acl_c_scr+12}
437
438   # Matches DOMAIN99.com - looks bad
439
440   warn condition       = ${if match {$sender_helo_name}{\N^[A-Z]+[A-Z0-9\-]+\.[A-Za-z0-9]+$\N}}
441        log_message     = SHOUTING HELO
442        set acl_c_scr   = ${eval:$acl_c_scr+7}
443
444   # Random HELO (run of 7 consonants) (constructed by viruses).  We purposefully
445   # skip matching on machines named .*smtp.*, since that's 4 already.  This is a fairly
446   # naive test, so it's not worth much
447
448   warn condition       = ${if match {${lc:$sender_helo_name}}{smtp}{no}{yes}}
449        condition       = ${if match {${lc:$sender_helo_name}}{\N^[a-z0-9]+\.[a-z]+$\N}}
450        condition       = ${if match {${lc:$sender_helo_name}}{\N.*[bcdfghjklmnpqrstvwxz]{7,}.*\.[a-z]+$\N}}
451        log_message     = random HELO
452        set acl_c_scr   = ${eval:$acl_c_scr+5}
453
454 <%- else -%>
455   drop !hosts          = +debianhosts
456        log_message     = mail from non-d.o host
457        message         = Interesting.  I doubt that should have happened.
458
459 <%- end -%>
460   # Implicit, but simpler to just say it
461   accept
462
463 #!!# ACL that is used after the RCPT command on the submission port
464 check_submission:
465
466   # Accept if the source is local SMTP (i.e. not over TCP/IP).
467   # We do this by testing for an empty sending host field.
468   accept  hosts = : 127.0.0.1
469
470 <%- if nodeinfo['mailrelay'] -%>
471   accept  verify   = certificate
472
473 <%- end -%>
474   # Defer after too many bad RCPT TO's.  Legit MTAs will retry later.
475   # This is a rough pass at preventing addres harvesting or other mail blasts.
476
477   defer  log_message   = Too many bad recipients ${eval:$rcpt_fail_count} out of $rcpt_count
478          message       = Too many bad recipients, try again later
479          condition     = ${if > {${eval:$rcpt_fail_count}}{3}{yes}{no}}
480
481   defer
482           ratelimit      = 5 / 60m / per_rcpt / $sender_host_address
483           !hosts         = +debianhosts
484           message        = sorry, only 5 reports per hour for submission
485
486   accept  domains  = +local_domains
487           hosts    = +debianhosts
488           endpass
489           verify   = recipient
490
491 <%- if nodeinfo['mailrelay'] -%>
492   accept  domains  = +mailhubdomains
493           endpass
494           verify   = recipient/callout=30s,defer_ok,use_sender,no_cache
495
496 <%- end -%>
497   accept  domains  = +submission_domains
498           endpass
499           verify   = recipient
500
501   deny    message = relay not permitted
502
503 #!!# ACL that is used after the RCPT command
504 check_recipient:
505
506 <%- if nodeinfo['mailrelay'] -%>
507   accept  verify   = certificate
508
509 <%- end -%>
510   warn    acl           = acl_getprofile
511           condition     = ${if eq{$acl_m_prf}{}}
512           set acl_m_prf = $acl_m_rprf
513
514   defer   condition     = ${if eq{$acl_m_prf}{$acl_m_rprf}{no}{yes}}
515           log_message   = Only one profile at a time, please
516
517   # Defer after too many bad RCPT TO's.  Legit MTAs will retry later.
518   # This is a rough pass at preventing addres harvesting or other mail blasts.
519
520   defer  log_message   = Too many bad recipients ${eval:$rcpt_fail_count} out of $rcpt_count
521          !acl          = acl_spamlovers
522          message       = Too many bad recipients, try again later
523          !hosts        = +debianhosts
524          condition     = ${if > {${eval:$rcpt_fail_count}}{3}{yes}{no}}
525
526   # Dump spambots that are so stupid they say helo as our IP address
527
528   drop   !hosts        = +debianhosts
529          !acl          = acl_spamlovers
530          condition     = ${if eq {$sender_helo_name}{$interface_address}{yes}{no}}
531          message       = HELO mismatch Forged HELO for ($sender_helo_name)
532
533   # Also for spambots that say helo as us or one of our domains
534
535   drop   !hosts        = +debianhosts
536          !acl          = acl_spamlovers
537          condition     = ${if match_domain{$sender_helo_name}{$primary_hostname:+handled_domains}}
538          condition     = ${if !match{$sender_host_name}{${rxquote:$sender_helo_name}\N$\N}}
539          message       = HELO mismatch Forged HELO for ($sender_helo_name)
540
541   # This logic gives you a list of commonly forged domains in helo to reject against
542
543   warn set acl_m_frg   = ${lookup{$sender_helo_name} \
544                            nwildlsearch{/etc/exim4/helo-check} \
545                           {${if eq{$value}{}{$sender_helo_name}{$value}}}{}}
546
547   # This is a failsafe in case DNS fails - we defer instead of hard reject if they 
548   # say helo as a name in the list but we can't look them up
549
550   defer  !hosts        = +debianhosts
551          !acl          = acl_spamlovers
552          condition     = ${if eq{$acl_m_frg}{}{no}{yes}}
553          condition     = ${if eq{$sender_host_name}{}{yes}{no}}
554          condition     = ${if eq{$host_lookup_failed}{1}{no}{yes}}
555          message       = Access temporarily denied. Resolve failed PTR for $sender_host_address
556
557   # If DNS works, go ahead and reject them
558
559   drop   !hosts        = +debianhosts
560          !acl          = acl_spamlovers
561          condition     = ${if and { {!eq{$acl_m_frg}{}}{!match{$sender_host_name}{${rxquote:$acl_m_frg}\N$\N}}}{yes}{no}}
562          message       = HELO mismatch Forged HELO for ($sender_helo_name)
563
564   # disabled accounts don't even get local mail.
565   deny   local_parts   = lsearch;/var/lib/misc/$primary_hostname/mail-disable
566          domains       = +local_domains
567          message       = ${lookup{$local_part}lsearch{/var/lib/misc/$primary_hostname/mail-disable}{$value}}
568
569   deny   domains       = +virtual_domains
570          local_parts   = ${if exists {${extract{directory}{VDOMAINDATA}{${value}/localonly}}}\
571                                      {${extract{directory}{VDOMAINDATA}{${value}/localonly}}}\
572                                      {}}
573          hosts         = !+debianhosts
574          message       = mail for <$local_part@$domain> only accepted from debian.org machines
575   # Accept if the source is local SMTP (i.e. not over TCP/IP).
576   # We do this by testing for an empty sending host field.
577   accept  hosts = :
578   
579   deny    domains       = +handled_domains
580           local_parts   = ^[.] : ^.*[@%!/|]
581   
582   deny    domains       = !+handled_domains
583           local_parts   = ^[./|] : ^.*[@%!] : ^.*/\\.\\./
584
585 # forwards mail to @d.o address, even if it's a bounce from master, no reply
586 # from source address; rejecting all mail now.
587   deny    recipients    = mendoza@debian.org
588           hosts         = 65.110.39.147 : 64.39.31.15
589           message       = <mendoza@kenny.linuxsis.net> cannot forward here while mailer-daemon mail is not caught
590
591   deny    condition     = ${lookup{$sender_address_local_part}lsearch{/etc/exim4/localusers}{true}}
592           sender_domains= +local_domains : debian.org : debian.net : debian.com
593           hosts         = !+debianhosts
594           message       = mail from <$sender_address> not allowed externally
595
596   deny    condition     = ${if match_domain{$sender_address_domain}{+virtual_domains}{1}{0}}
597           condition     = ${if exists {${extract{directory}{VDOMAINDATA}{${value}/neversenders}}}{1}{0}}
598           condition     = ${if match_local_part {$sender_address_local_part}{${extract{directory}{VDOMAINDATA}{${value}/neversenders}}}{1}{0}}
599           message       = no mail should ever come from <$sender_address>
600
601   warn    condition     = ${if eq{$acl_m_prf}{localonly}}
602           set acl_m_lrc = ${if eq{$acl_m_lrc}{}{$local_part@$domain}{$acl_m_lrc, $local_part@$domain}}
603
604 <%- if 0 == 1 -%>
605   deny    message  = address $sender_host_address is listed in $dnslist_domain; $dnslist_text
606           hosts    = !+debianhosts
607           dnslists = rbl.debian.net : rbl.debian.net/$sender_address_domain
608
609 <%- end -%>
610 <%- if nodeinfo['packagesmaster'] -%>
611   warn    condition      = ${if eq {$acl_m_prf}{PackagesMail}}
612           condition      = ${if eq {$sender_address}{$local_part@$domain}}
613           message        = X-Packages-FromTo-Same: yes
614
615 <%- end -%>
616   deny    condition      = ${if eq {$acl_m_prf}{PopconMail}{no}{yes}}
617           !verify        = sender
618
619   defer   !hosts         = +debianhosts
620           condition      = ${if eq {$acl_m_prf}{PopconMail}{no}{yes}}
621           condition      = ${if >{${eval:$acl_c_scr+0}}{0}}
622           ratelimit      = 10 / 60m / per_rcpt / $sender_host_address
623           message        = slow down (no reverse dns, mismatched ehlo, dialup, or in blacklists)
624
625 <%- if has_variable?("policydweight") && policydweight == "true" -%>
626   # Check with policyd-weight - this only works with a version after etch's,
627   # sadly.  etch's version attempts to hold the socket open, since that's what
628   # postfix expects.  Exim, on the other hand, expects the remote side to close
629   # the socket when it's finished sending data, so it see each transaction as
630   # an incomplete read.  I'm sure there's a way we could force exim to do
631   # something sick and clever to force either the interpretation or the socket
632   # closure, but I'm fairly sure it's now worth it, since the backport of
633   # policyd-weight is trivial.
634   warn  !hosts         = +debianhosts
635         condition      = ${if eq {$acl_m_prf}{PopconMail}{no}{yes}}
636         set acl_m_pw   = ${readsocket{inet:127.0.0.1:12525}\
637                           {request=smtpd_access_policy\n\
638                            protocol_state=RCPT\n\
639                            protocol_name=${uc:$received_protocol}\n\
640                            helo_name=$sender_helo_name\n\
641                            queue_id=$message_exim_id\n\
642                            sender=$sender_address\n\
643                            recipient=$local_part@$domain\n\
644                            recipient_count=$rcpt_count\n\
645                            client_address=$sender_host_address\n\
646                            client_name=$sender_host_name\n\
647                            reverse_client_name=$sender_host_name\n\
648                            instance=$sender_host_address.$sender_address.$sender_helo_name\n\n}\
649                           {20s}{\n}{socket failure}}
650
651   # Defer on socket error
652   defer !hosts         = +debianhosts
653         condition      = ${if eq {$acl_m_prf}{PopconMail}{no}{yes}}
654         condition      = ${if eq{$acl_m_pw}{socket failure}{yes}{no}}
655         message        = Cannot connect to policyd-weight. Please try again later.
656
657   # Set proposed action to $acl_m_act and message to $acl_m_mes
658   warn  !hosts         = +debianhosts
659         condition      = ${if eq {$acl_m_prf}{PopconMail}{no}{yes}}
660         set acl_m_mes  = ${extract{action}{$acl_m_pw}}
661         set acl_m_act  = ${sg{$acl_m_pw}{\Naction=[^ ]+ (.*)\n\n\N}{\$1}}
662
663   # Add X-policyd-weight header line to message
664   warn  !hosts         = +debianhosts
665         condition      = ${if eq {$acl_m_prf}{PopconMail}{no}{yes}}
666         message        = $acl_m_mes
667         condition      = ${if eq{$acl_m_act}{PREPEND}{yes}{no}}
668
669   # Write log message, if policyd-weight can't run checks
670   warn  !hosts         = +debianhosts
671         condition      = ${if eq {$acl_m_prf}{PopconMail}{no}{yes}}
672         log_message    = policyd-weight message: $acl_m_mes
673         condition      = ${if eq{$acl_m_act}{DUNNO}{yes}{no}}
674
675   # Deny mails which policyd-weight thinks are spam
676   deny  !hosts         = +debianhosts
677         condition      = ${if eq {$acl_m_prf}{PopconMail}{no}{yes}}
678         message        = policyd-weight said: $acl_m_mes
679         condition      = ${if eq{$acl_m_act}{550}{yes}{no}}
680
681   # Defer messages when policyd-weight suggests so.
682   defer  !hosts         = +debianhosts
683          condition      = ${if eq {$acl_m_prf}{PopconMail}{no}{yes}}
684          message        = policyd-weight said: $acl_m_mes
685          condition      = ${if eq{$acl_m_act}{450}{yes}{no}}
686
687 <%- end -%>
688 <%- if nodeinfo['rtmaster'] -%>
689   warn    condition     = ${if eq{$acl_m_prf}{RTMail}}
690           set acl_m12   = ${if def:acl_m12 {$acl_m12} {${if or{{match{$local_part}{\N[^+]+\+\d+\N}}{match{$local_part}{\N[^+]+\+new\N}}} {RTMailRecipientHasSubaddress}}}}
691
692 <%- end -%>
693 <%- if has_variable?("greylistd") && greylistd == "true" -%>
694   defer
695     message  = $sender_host_address is not yet authorized to deliver mail from <$sender_address> to <$local_part@$domain>.
696     log_message = greylisted.
697     local_parts    = ${if match_domain{$domain}{+virtual_domains}\
698                      {${if exists {${extract{directory}{VDOMAINDATA}{${value}/grey_users}}}\
699                      {${lookup{$local_part}lsearch*{${extract{directory}{VDOMAINDATA}{${value}/grey_users}}}{$local_part}{}}}{}}}\
700                      {${lookup{$local_part}lsearch{/etc/exim4/grey_users}{$local_part}{}} : \
701                      ${lookup{$local_part}lsearch{/var/lib/misc/$primary_hostname/mail-greylist}{$local_part}{}}}}
702     !senders       = :
703     !hosts         = : +debianhosts : WHITELIST : \
704                      ${if exists {/etc/greylistd/whitelist-hosts}\
705                                  {/etc/greylistd/whitelist-hosts}{}} : \
706                      ${if exists {/var/lib/greylistd/whitelist-hosts}\
707                                  {/var/lib/greylistd/whitelist-hosts}{}} 
708     condition      = ${if eq {$acl_m_prf}{PopconMail}{no}{yes}}
709     !authenticated = *
710     domains        = +handled_domains
711     condition      = ${readsocket{/var/run/greylistd/socket}\
712                                  {--grey \
713                                   $sender_host_address \
714                                   $sender_address \
715                                   $local_part@$domain}\
716                                  {5s}{}{false}}
717
718 <%- elsif has_variable?("postgrey") && postgrey == "true" -%>
719   # next three are greylisting, inspired by http://www.bebt.de/blog/debian/archives/2006/07/30/T06_12_27/index.html
720   # this adds acl_m_grey if there isn't one (so unique per message)
721   warn
722     !senders       = :
723     !hosts         = : +debianhosts : WHITELIST
724     condition      = ${if eq {$acl_m_prf}{PopconMail}{no}{yes}}
725     condition      = ${if def:acl_m_grey {no}{yes}}
726     set acl_m_grey = $pid.$tod_epoch.$sender_host_port
727
728   # and defers the message if postgrey thinks it should be defered ...
729   defer
730     !senders       = :
731     !hosts         = : +debianhosts : WHITELIST
732     condition      = ${if eq {$acl_m_prf}{PopconMail}{no}{yes}}
733     !authenticated = *
734     domains        = +handled_domains
735     local_parts    = GREYLIST_LOCAL_PARTS
736     set acl_m_pgr  = request=smtpd_access_policy\n\
737                      protocol_state=RCPT\n\
738                      protocol_name=${uc:$received_protocol}\n\
739                      instance=${acl_m_grey}\n\
740                      helo_name=${sender_helo_name}\n\
741                      client_address=${substr_-3:${mask:$sender_host_address/24}}\n\
742                      client_name=${sender_host_name}\n\
743                      sender=${sender_address}\n\
744                      recipient=$local_part@$domain\n\n
745     set acl_m_pgr  = ${sg{\
746                          ${readsocket{/var/run/postgrey/socket}{$acl_m_pgr}\
747                                {5s}{}{action=DUNNO}}\
748                      }{action=}{}}
749     message        = ${sg{$acl_m_pgr}{^\\w+\\s*}{}}
750     log_message    = greylisted.
751     condition      = ${if eq{${uc:${substr{0}{5}{$acl_m_pgr}}}}{DEFER}}
752
753  # ... or adds a header with information about how long the delay was
754  warn
755     !senders       = :
756     !hosts         = : +debianhosts : WHITELIST
757     condition      = ${if eq {$acl_m_prf}{PopconMail}{no}{yes}}
758     !authenticated = *
759     domains        = +handled_domains
760     local_parts    = GREYLIST_LOCAL_PARTS
761     condition      = ${if eq{${uc:${substr_0_7:$acl_m_pgr}}}{PREPEND}}
762     message        = ${sg{$acl_m_pgr}{^\\w+\\s*}{}}
763
764 <%- end -%>
765   accept  local_parts   = +postmasterish
766           domains       = +handled_domains
767
768   deny    hosts        = ${if exists{/etc/exim4/host_blacklist}{/etc/exim4/host_blacklist}{}}
769           message      = I'm terribly sorry, but it seems you have been blacklisted
770           log_message  = blacklisted IP
771
772   deny   log_message   = <$sender_address> is blacklisted
773          senders       = ${if exists{/etc/exim4/blacklist}{/etc/exim4/blacklist}{}}
774          message       = We have blacklisted <$sender_address>.  Please stop mailing us
775
776 <%- if nodeinfo['smarthost'].empty? -%>
777   deny    message  = host $sender_host_address is listed in $dnslist_domain; see $dnslist_text
778           dnslists = ${if match_domain{$domain}{+virtual_domains}\
779                      {${if exists {${extract{directory}{VDOMAINDATA}{${value}/rbllist}}}\
780                      {${lookup{$local_part}lsearch*{${extract{directory}{VDOMAINDATA}{${value}/rbllist}}}{$value}{}}}{}}}\
781                      {${lookup{$local_part}lsearch{/etc/exim4/rbllist}{$value}{}} : \
782                      ${lookup{$local_part}lsearch{/var/lib/misc/$primary_hostname/mail-rbl}{$value}{}}}}
783           domains       = +handled_domains
784           !hosts        = +debianhosts : WHITELIST
785
786 <%- end -%>
787   deny    message  = domain $sender_address_domain is listed in $dnslist_domain; see $dnslist_text
788           dnslists = ${if match_domain{$domain}{+virtual_domains}\
789                      {${if exists {${extract{directory}{VDOMAINDATA}{${value}/rhsbllist}}}\
790                      {${expand:${lookup{$local_part}lsearch*{${extract{directory}{VDOMAINDATA}{${value}/rhsbllist}}}{$value}{}}}}{}}}\
791                      {${expand:${lookup{$local_part}lsearch{/etc/exim4/rhsbllist}{$value}{}}} : \
792                      ${expand:${lookup{$local_part}lsearch{/var/lib/misc/$primary_hostname/mail-rhsbl}{$value}{}}}}}
793           domains       = +handled_domains
794           !hosts        = +debianhosts : WHITELIST
795
796 <%- if nodeinfo['smarthost'].empty? -%>
797   deny    domains  = +handled_domains
798           local_parts   = ${if match_domain{$domain}{+virtual_domains}\
799                            {${if exists {${extract{directory}{VDOMAINDATA}{${value}/callout_users}}}\
800                            {${lookup{$local_part}lsearch*{${extract{directory}{VDOMAINDATA}{${value}/callout_users}}}{$local_part}{}}}{}}}\
801                            {${lookup{$local_part}lsearch{/etc/exim4/callout_users}{$local_part}{}} : \
802                            ${lookup{$local_part}lsearch{/var/lib/misc/$primary_hostname/mail-callout}{$local_part}{}}}}
803           !hosts   = +debianhosts : WHITELIST
804           !verify  = sender/callout=90s,maxwait=300s
805
806 <%- end -%>
807 <%- if nodeinfo['mailrelay'] -%>
808   accept  domains  = +mailhubdomains
809           endpass
810           verify   = recipient/callout=30s,defer_ok,use_sender,no_cache
811
812 <%- end -%>
813   accept  domains  = +handled_domains
814           endpass
815           verify   = recipient/defer_ok
816
817   accept  hosts         = +debianhosts
818
819   accept  authenticated = *
820
821   deny    message = relay not permitted
822
823 <%- if nodeinfo.has_key?('heavy_exim') and not nodeinfo['heavy_exim'].empty? -%>
824 acl_check_mime:
825
826  discard condition     = ${if <{$message_size}{256000}}
827          condition     = ${if eq {$acl_m_prf}{blackhole}}
828          set acl_m_srb = ${perl{surblspamcheck}}
829          condition     = ${if eq{$acl_m_srb}{false}{no}{yes}}
830          log_message   = discarded surbl message for $recipients
831
832   deny   condition     = ${if <{$message_size}{256000}}
833          condition     = ${if eq {$acl_m_prf}{markup}{no}{yes}}
834          condition     = ${if eq {$acl_m_prf}{PopconMail}{no}{yes}}
835          set acl_m_srb = ${perl{surblspamcheck}}
836          condition     = ${if eq{$acl_m_srb}{false}{no}{yes}}
837          log_message   = $acl_m_srb
838          message       = $acl_m_srb
839
840   warn   condition     = ${if <{$message_size}{256000}}
841          condition     = ${if eq {$acl_m_prf}{markup}}
842          set acl_m_srb = ${perl{surblspamcheck}}
843          condition     = ${if eq{$acl_m_srb}{false}{no}{yes}}
844          message       = X-Surbl-Hit: $primary_hostname: $acl_m_srb
845
846   accept
847
848 <%- end -%>
849 acl_check_predata:
850   deny   condition     = ${if eq{$acl_m_prf}{localonly}}
851          message       = mail for $acl_m_lrc is only accepted internally
852
853   accept
854
855
856 #!!# ACL that is used after the DATA command
857 check_message:
858 <%- if nodeinfo['rtmaster'] -%>
859   deny    condition = ${if eq {$acl_m_prf}{RTMail}}
860           condition = ${if and{{!match {${lc:$rh_Subject:}} {debian rt}} \
861                                {!match {${lc:$rh_Subject:]}} {\N\[rt.debian.org \N}} \
862                                {!match {$acl_m12}{RTMailRecipientHasSubaddress}}}}
863           message  = messages to the Request Tracker system require a subject tag or a subaddress
864
865 <%- end -%>
866 <%- if nodeinfo['packagesqamaster'] -%>
867   deny    !hosts  = +debianhosts : 217.196.43.134
868           condition = ${if eq {$acl_m_prf}{PTSMail}}
869           condition = ${if def:h_X-PTS-Approved:{false}{true}}
870           message   = messages to the PTS require an X-PTS-Approved header
871
872 <%- end -%>
873   deny    condition      = ${if eq {$acl_m_prf}{DBSignedMail}}
874           condition      = ${if and {{!match {$message_body}{PGP MESSAGE}}              \
875                                      {!match {$message_body}{PGP SIGNED MESSAGE}}       \
876                                      {!match {$message_body}{PGP SIGNATURE}}            \
877                                      {!match {$header_content-type:}{multipart/signed}} \
878                                      {!match {$header_content-type:}{pgp}}              \
879                                     }                                                   \
880                             }
881           message        = Mail to this address needs to be PGP-signed
882
883   accept verify  = certificate
884
885   deny    condition = ${if eq {$acl_m_prf}{PopconMail}{no}{yes}}
886           !verify   = header_syntax
887           message   = Invalid syntax in the header
888
889 # RFC 822 and 2822 say that headers must be ASCII.  This kinda emulates
890 # postfix's strict_7bit_headers option, but only checks a few common problem
891 # headers, as there doesn't appear to be an easy way to check them all.
892   deny
893           condition       = ${if or {{match {$rh_Subject:}{[\200-\377]}}\
894                                  {match {$rh_To:}{[\200-\377]}}\
895                                  {match {$rh_From:}{[\200-\377]}}\
896                                  {match {$rh_Cc:}{[\200-\377]}}}{true}{false}}
897           condition       = ${if eq {$acl_m_prf}{PopconMail}{no}{yes}}
898           message         = improper use of 8-bit data in message header: message rejected
899
900   deny
901           condition       = ${if match {$rh_Subject:}{[^[:print:]]\{8\}}{true}{false}}
902           condition       = ${if eq {$acl_m_prf}{PopconMail}{no}{yes}}
903           message         = Your mailer is not RFC 2047 compliant: message rejected
904
905 <%- if has_variable?("clamd") && clamd == "true" -%>
906   discard condition       = ${if eq {$acl_m_prf}{blackhole}}
907           demime          = *
908           malware         = */defer_ok
909           log_message     = discarded malware message for $recipients
910
911   deny    condition       = ${if eq {$acl_m_prf}{markup}{no}{yes}}
912           condition       = ${if eq {$acl_m_prf}{PopconMail}{no}{yes}}
913           demime          = *
914           malware         = */defer_ok
915           message         = malware detected: $malware_name: message rejected
916
917   warn    condition       = ${if eq {$acl_m_prf}{markup}}
918           demime          = *
919           malware         = */defer_ok
920           message         = X-malware detected: $malware_name
921
922 <%- end -%>
923 <%- if nodeinfo.has_key?('heavy_exim') and not nodeinfo['heavy_exim'].empty? -%>
924  discard condition     = ${if <{$message_size}{256000}}
925          condition     = ${if eq {$acl_m_prf}{blackhole}}
926          set acl_m_srb = ${perl{surblspamcheck}}
927          condition     = ${if eq{$acl_m_srb}{false}{no}{yes}}
928          log_message   = discarded surbl message for $recipients
929
930   deny   condition     = ${if <{$message_size}{256000}}
931          condition     = ${if eq {$acl_m_prf}{markup}{no}{yes}}
932          condition     = ${if eq {$acl_m_prf}{PopconMail}{no}{yes}}
933          set acl_m_srb = ${perl{surblspamcheck}}
934          condition     = ${if eq{$acl_m_srb}{false}{no}{yes}}
935          log_message   = $acl_m_srb
936          message       = $acl_m_srb
937
938   warn   condition     = ${if <{$message_size}{256000}}
939          condition     = ${if eq {$acl_m_prf}{markup}}
940          set acl_m_srb = ${perl{surblspamcheck}}
941          condition     = ${if eq{$acl_m_srb}{false}{no}{yes}}
942          message       = X-Surbl-Hit: $primary_hostname: $acl_m_srb
943
944 <%- end -%>
945   # Check header_sender except for survey@popcon.d.o
946   deny    condition    = ${if eq{$acl_m_prf}{PopconMail}{false}{true}}
947           !verify      = header_sender
948           message      = No valid sender found in the From:, Sender: and Reply-to: headers
949
950 <%- if nodeinfo['packagesmaster'] -%>
951   deny  message        = Congratulations, you scored $spam_score points.
952         log_message    = spam: $spam_score points.
953         condition      = ${if eq {$acl_m_prf}{PackagesMail}}
954         !authenticated = *
955         !verify        = certificate
956         !hosts         = +debianhosts
957         condition      = ${if <{$message_size}{256000}}
958         spam           = pkg_user : true
959         condition      = ${if >{$spam_score_int}{59}}
960
961 <%- end -%>
962   accept
963
964
965
966 ######################################################################
967 #                      REWRITE CONFIGURATION                         #
968 ######################################################################
969
970
971
972 begin rewrite
973
974 \N^buildd_(.*)@ries\.debian\.org$\N buildd_$1@buildd.debian.org T
975 \N^buildd_(.*)@klecker\.debian\.org$\N buildd_$1@buildd.debian.org T
976 *@debian.org ${lookup{$1}cdb{/var/lib/misc/${primary_hostname}/mail-forward.cdb}{$value}fail} T
977 *@people.debian.org ${lookup{$1}cdb{/var/lib/misc/${primary_hostname}/mail-forward.cdb}{$value}fail} T
978 #*@${primary_hostname} "${if exists{/etc/exim4/email-addresses}{${lookup{$1}lsearch{/etc/exim4/email-addresses}{$value}fail}}fail}" fFs
979 m68k@buildd.debian.org m68k-build@nocrew.org Ttrbc
980
981
982 #!!#######################################################!!#
983 #!!# Here follow routers created from the old routers,   #!!#
984 #!!# for handling non-local domains.                     #!!#
985 #!!#######################################################!!#
986
987 begin routers
988
989
990
991 ######################################################################
992 #                      ROUTERS CONFIGURATION                         #
993 #                Specifies how addresses are handled                 #
994 ######################################################################
995 #                          ORDER DOES MATTER                         #
996 #     An address is passed to each in turn until it is accepted.     #
997 ######################################################################
998
999 <%- if nodeinfo['mailrelay'] -%>
1000 relay_manualroute:
1001   driver = manualroute
1002   domains = +mailhubdomains
1003   transport = remote_smtp
1004   route_data = ${lookup{$domain}lsearch{/etc/exim4/manualroute}}
1005   require_files = /etc/exim4/manualroute
1006
1007 <%- end -%>
1008 bsmtp:
1009   debug_print = "R: bsmtp for $local_part@$domain"
1010   driver = manualroute
1011   domains = +bsmtp_domains
1012   require_files = /etc/exim4/bsmtp
1013   route_list = * ${extract{file}{\
1014                    ${lookup{$domain}partial-lsearch{/etc/exim4/bsmtp}\
1015                      {$value}fail}}}
1016   transport = bsmtp
1017
1018 # This router routes to remote hosts over SMTP by explicit IP address,
1019 # given as a "domain literal" in the form [nnn.nnn.nnn.nnn]. The RFCs
1020 # require this facility, which is why it is enabled by default in Exim.
1021 ipliteral:
1022   debug_print = "R: ipliteral for $local_part@$domain"
1023   driver = ipliteral
1024   domains = !+handled_domains
1025   transport = remote_smtp
1026   ignore_target_hosts = +reservedaddrs
1027
1028 <%=
1029 out = ""
1030 if not nodeinfo['smarthost'].empty?
1031 out = '
1032 smarthost:
1033   debug_print = "R: smarthost for $local_part@$domain"
1034   driver = manualroute
1035   domains = !+handled_domains
1036   transport = remote_smtp_smarthost
1037   route_list = * ' + nodeinfo['smarthost']
1038   if nodeinfo['smarthost'] == 'mailout.debian.org'
1039     out += '/MX'
1040   end
1041   out += '
1042   host_find_failed = defer
1043   same_domain_copy_routing = yes
1044   no_more
1045 '
1046 end
1047 out
1048 %>
1049
1050 # This router routes to remote hosts over SMTP using a DNS lookup.
1051 # Ignore reserved network responses, including localhost.
1052 dnslookup:
1053   debug_print = "R: dnslookup for $local_part@$domain"
1054   driver = dnslookup
1055   domains = !+handled_domains
1056   transport = remote_smtp
1057   ignore_target_hosts = +reservedaddrs
1058   no_more
1059
1060 postmasterish:
1061   debug_print = "R: postmasterish for $local_part@$domain"
1062   driver = redirect
1063   verify = false
1064   unseen = true
1065   expn = true
1066   local_parts = +postmasterish
1067   domains = +handled_domains
1068   data = debian-admin@debian.org
1069   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}"
1070
1071 # This router handles aliasing using a traditional /etc/aliases file.
1072 # If any of your aliases expand to pipes or files, you will need to set
1073 # up a user and a group for these deliveries to run under. You can do
1074 # this by uncommenting the "user" option below (changing the user name
1075 # as appropriate) and adding a "group" option if necessary.
1076
1077 system_aliases:
1078   debug_print = "R: system_aliases for $local_part@$domain"
1079   driver = redirect
1080   allow_defer
1081   allow_fail
1082   data = ${lookup{$local_part}lsearch*{/etc/aliases}}
1083   domains = +local_domains
1084   file_transport = address_file
1085   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}"
1086   pipe_transport = address_pipe
1087   retry_use_local_part
1088
1089 # This router handles forwarding using traditional .forward files.
1090 # It also allows mail filtering when a forward file starts with the 
1091 # string "# Exim filter": to disable filtering, uncomment the "filter" 
1092 # option. The check_ancestor option means that if the forward file 
1093 # generates an address that is an ancestor of the current one, the 
1094 # current one gets passed on instead. This covers the case where A is 
1095 # aliased to B and B has a .forward file pointing to A.
1096
1097 # For standard debian setup of one group per user, it is acceptable---normal
1098 # even---for .forward to be group writable. If you have everyone in one
1099 # group, you should comment out the "modemask" line. Without it, the exim
1100 # default of 022 will apply, which is probably what you want.
1101
1102 userforward_verify:
1103   debug_print = "R: userforward for $local_part${local_part_suffix}@$domain"
1104   driver = redirect
1105   check_ancestor
1106   user = Debian-exim
1107   no_check_local_user
1108   directory_transport = address_directory
1109   domains = +local_domains
1110   # filter - I have disabled filtering to force users to use .forward-foo files
1111   # or procmail. This will make it easier to move mailers in the future
1112   #
1113   # This bit does the qmailesque extension names, foo-bar@ is .forward-foo it
1114   # also checks if the .forward-bar exists, if not then it uses
1115   # .forward-default instead.
1116   file = $home/.forward\
1117          ${if eq{}{$local_part_suffix}{}{\
1118            ${if exists {${home}/.forward${local_part_suffix}} \
1119              {${local_part_suffix}}{-default}}\
1120            }\
1121           }
1122   file_transport = address_file
1123   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}"
1124   local_part_suffix = -*
1125   local_part_suffix_optional
1126   modemask = 002
1127   pipe_transport = address_pipe
1128   reply_transport = address_reply
1129   require_files = $home
1130   router_home_directory = ${lookup passwd{$local_part}{${extract{5}{:}{$value}}}fail}
1131   verify_only
1132
1133 userforward:
1134   debug_print = "R: userforward for $local_part${local_part_suffix}@$domain"
1135   driver = redirect
1136   check_ancestor
1137   check_local_user
1138   directory_transport = address_directory
1139   domains = +local_domains
1140   # filter - I have disabled filtering to force users to use .forward-foo files
1141   # or procmail. This will make it easier to move mailers in the future
1142   #
1143   # This bit does the qmailesque extension names, foo-bar@ is .forward-foo it
1144   # also checks if the .forward-bar exists, if not then it uses
1145   # .forward-default instead.
1146   file = $home/.forward\
1147          ${if eq{}{$local_part_suffix}{}{\
1148            ${if exists {${home}/.forward${local_part_suffix}} \
1149              {${local_part_suffix}}{-default}}\
1150            }\
1151           }
1152   file_transport = address_file
1153   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}"
1154   local_part_suffix = -*
1155   local_part_suffix_optional
1156   modemask = 002
1157   pipe_transport = address_pipe
1158   reply_transport = address_reply
1159   require_files = $home
1160   no_verify
1161
1162 # This delivers to procmail
1163 procmail:
1164   debug_print = "R: procmail for $local_part@$domain"
1165   driver = accept
1166   check_local_user
1167   domains = +local_domains
1168   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}"
1169   local_part_suffix = -*
1170   local_part_suffix_optional
1171   no_verify
1172   no_expn
1173   require_files = $local_part:$home/.procmailrc
1174   transport = procmail_pipe
1175   transport_current_directory = $home
1176   
1177 # This driver delivers to the LDAP generated alias file.
1178 ldap_aliases:
1179   debug_print = "R: ldap_aliases for $local_part@$domain"
1180   driver = redirect
1181   allow_defer
1182   allow_fail
1183   data = ${if exists{/var/lib/misc/$primary_hostname/mail-forward.cdb}\
1184              {${lookup{$local_part}cdb\
1185                {/var/lib/misc/$primary_hostname/mail-forward.cdb}}}}
1186   domains = +local_domains
1187   file_transport = address_file
1188   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}"
1189   pipe_transport = address_pipe
1190   retry_use_local_part
1191   
1192 # This director matches local user mailboxes.
1193 localuser:
1194   debug_print = "R: localuser for $local_part@$domain"
1195   driver = accept
1196   check_local_user
1197   domains = +local_domains
1198   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}"
1199   # Disable if the user has never logged in
1200   require_files = $home
1201   transport = local_delivery
1202   no_more
1203
1204 # Now we begin the Virtual Domain configuration
1205 # Everything before here should apply only to the local domains with a 
1206 # domains= rule
1207
1208 <%- if nodeinfo['packagesmaster'] -%>
1209 # This router delivers for packages.d.o
1210 packages:
1211   debug_print = "R: packages for $local_part@$domain"
1212   driver = redirect
1213   file_transport = address_file
1214   pipe_transport = address_pipe
1215   domains = packages.debian.org
1216   require_files = /org/packages.debian.org/conf/maintainer
1217   data = ${lookup{$local_part}cdb{/org/packages.debian.org/conf/maintainer.cdb}}
1218   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}"
1219   transport_home_directory = /org/packages.debian.org/mail
1220   transport_current_directory = /org/packages.debian.org/mail
1221   check_ancestor
1222   retry_use_local_part
1223   no_more
1224
1225 <%- end -%>
1226 <%=
1227 out = ""
1228 if nodeinfo['bugsmaster'] or nodeinfo['bugsmx']
1229   domain = 'bugs.debian.org'
1230   if nodeinfo['bugsmaster']
1231     domain = 'bugs-master.debian.org'
1232   end
1233   out = '
1234 # This router delivers for bugs.d.o
1235 bugs:
1236   debug_print = "R: bugs for $local_part@$domain"
1237   driver = accept
1238   transport = bugs_pipe
1239   domains = ' + domain + '
1240   cannot_route_message = Unknown or archived bug
1241   require_files = /org/bugs.debian.org/mail/run-procmail
1242   no_more
1243   local_parts = ${if match\
1244                   {$local_part}\
1245                   {\N^(\d+)(\d{2})(?:-(?:(?:submit|maintonly|quiet|forwarded|done|close|request|submitter)|(?:unsubscribe|ignore|help|(?:sub(?:scribe|help|yes|approve|reject))|unsubyes|bounce|probe|approve|reject|setlistyes|setlistsilentyes).*))?$\N}\
1246                {${if exists{/org/bugs.debian.org/spool/db-h/$2/$1$2.summary}\
1247                {$local_part}fail}}fail}
1248 '
1249 end
1250 out
1251 %>
1252 <%- if nodeinfo['rtmaster'] -%>
1253 # This router delivers for rt.d.o
1254 rt_force_new_verbose:
1255   debug_print = "R: rt for $local_part+new@$domain"
1256   driver = redirect
1257   domains = rt.debian.org
1258   require_files = /usr/bin/rt-mailgate : RT_QUEUE_MAP
1259   local_parts = ${lookup{${sg{$local_part}{-comment}{}}}lsearch{RT_QUEUE_MAP}{$local_part}{}}
1260   local_part_suffix = +new
1261   pipe_transport = rt_pipe
1262   data = "|/usr/bin/rt-mailgate --queue '${lookup{${sg{$local_part}{-comment}{}}}lsearch{RT_QUEUE_MAP}}' --url https://rt.debian.org/ --action ${if match{$local_part}{.*-comment.*}{comment}{correspond}}"
1263   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}"
1264
1265 # FIXME: figure out how to generalize this approach so that all of the following would work
1266 # - rt+NNNN@rt.debian.org          : attach correspondence to ticket (verbose)
1267 # - rt+NNNN-quiesce@rt.debian.org  : attach correspondence to ticket (quiesce)
1268 # - rt+NNNN-<action>@rt.debian.org : attach correspondence to ticket (some action)
1269 # requires modification to custom condition in 'scrips'
1270 rt_force_new_quiesce:
1271   debug_print = "R: rt for $local_part+new-quiesce@$domain"
1272   driver = redirect
1273   domains = rt.debian.org
1274   require_files = /usr/bin/rt-mailgate : RT_QUEUE_MAP
1275   local_parts = ${lookup{${sg{$local_part}{-comment}{}}}lsearch{RT_QUEUE_MAP}{$local_part}{}}
1276   local_part_suffix = +new-quiesce
1277   pipe_transport = rt_pipe
1278   data = "|/usr/bin/rt-mailgate --queue '${lookup{${sg{$local_part}{-comment}{}}}lsearch{RT_QUEUE_MAP}}' --url https://rt.debian.org/ --action ${if match{$local_part}{.*-comment.*}{comment}{correspond}}"
1279   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}\nX-RT-Mode: quiesce"
1280
1281 rt_otherwise:
1282   debug_print = "R: rt for $local_part@$domain"
1283   driver = redirect
1284   domains = rt.debian.org
1285   require_files = /usr/bin/rt-mailgate : RT_QUEUE_MAP
1286   local_parts = ${lookup{${sg{$local_part}{-comment}{}}}lsearch{RT_QUEUE_MAP}{$local_part}{}}
1287   local_part_suffix = +*
1288   local_part_suffix_optional
1289   pipe_transport = rt_pipe
1290   data = "|/usr/bin/rt-mailgate --queue '${lookup{${sg{$local_part}{-comment}{}}}lsearch{RT_QUEUE_MAP}}' --url https://rt.debian.org/ --extension ticket --action ${if match{$local_part}{.*-comment.*}{comment}{correspond}}"
1291   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}"
1292
1293 <%- end -%>
1294
1295 # exim4 fails the router if it can't change to the user/group for delivery
1296 # during verification.  So we have to seperate the cases of verifying
1297 # the virts, and delivering to them.  blah.
1298
1299 virt_direct_verify:
1300   debug_print = "R: virt_direct for $local_part@$domain"
1301   driver = redirect
1302   no_check_local_user
1303   user = Debian-exim
1304   allow_filter
1305   modemask = 002
1306   directory_transport = address_directory
1307   domains = +virtual_domains
1308   file = $home/.forward-\
1309               ${if exists {${home}/.forward-${local_part}}{${local_part}}\
1310                    {default}}
1311   file_transport = address_file
1312   pipe_transport = address_pipe
1313   reply_transport = address_reply
1314   retry_use_local_part
1315   router_home_directory = ${extract{directory}{VDOMAINDATA}}
1316   transport_current_directory = ${extract{directory}{VDOMAINDATA}}
1317   verify_only
1318
1319 # This is a senmailesque alias file lookup
1320 virt_aliases:
1321   debug_print = "R: virt_aliases for $local_part@$domain"
1322   driver = redirect
1323   allow_defer
1324   allow_fail
1325   data = ${if exists{\
1326            ${extract{directory}{VDOMAINDATA}{${value}/aliases}}}\
1327            {${lookup{$local_part}lsearch*{\
1328               ${extract{directory}{VDOMAINDATA}{$value/aliases}}\
1329            }}}}
1330   directory_transport = address_directory
1331   domains = +virtual_domains
1332   file_transport = ${if eq {${extract{group_writable}{VDOMAINDATA}}}{true}{address_file_group}{address_file}}
1333   cannot_route_message = Unknown user
1334   group = ${extract{group}{VDOMAINDATA}}
1335   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}"
1336   pipe_transport = address_pipe
1337   qualify_preserve_domain
1338   retry_use_local_part
1339   transport_current_directory = ${extract{directory}{VDOMAINDATA}}
1340   transport_home_directory = ${extract{directory}{VDOMAINDATA}}
1341   user = ${extract{user}{VDOMAINDATA}}
1342   
1343 # This is a qmailesque deliver into a directory of .forward files
1344 virt_direct:
1345   debug_print = "R: virt_direct for $local_part@$domain"
1346   driver = redirect
1347   allow_filter
1348   allow_fail
1349   allow_defer
1350   no_check_local_user
1351   directory_transport = address_directory
1352   domains = +virtual_domains
1353   file = $home/.forward-\
1354               ${if exists {${home}/.forward-${local_part}}{${local_part}}\
1355                    {default}}
1356   file_transport = ${if eq {${extract{group_writable}{VDOMAINDATA}}}{true}{address_file_group}{address_file}}
1357   group = ${extract{group}{VDOMAINDATA}}
1358   headers_add = "Delivered-To: ${local_part}${local_part_suffix}@${domain}"
1359   modemask = 002
1360   pipe_transport = address_pipe
1361   reply_transport = address_reply
1362   retry_use_local_part
1363   router_home_directory = ${extract{directory}{VDOMAINDATA}}
1364   transport_current_directory = ${extract{directory}{VDOMAINDATA}}
1365   no_verify
1366   user = ${extract{user}{VDOMAINDATA}}
1367   #debug_print = .forward-${if exists {${home}/.forward-${local_part}} {${local_part}} {default}}
1368
1369 ######################################################################
1370 #                      TRANSPORTS CONFIGURATION                      #
1371 ######################################################################
1372 #                       ORDER DOES NOT MATTER                        #
1373 #     Only one appropriate transport is called for each delivery.    #
1374 ######################################################################
1375
1376
1377 begin transports
1378
1379 # This transport is used for local delivery to user mailboxes. On debian
1380 # systems group mail is used so we can write to the /var/mail
1381 # directory. (The alternative, which most other unixes use, is to deliver
1382 # as the user's own group, into a sticky-bitted directory)
1383 local_delivery:
1384   driver = appendfile
1385   file = /var/mail/${local_part}
1386   group = mail
1387   mode = 0660
1388   no_mode_fail_narrower
1389   return_path_add
1390   
1391 # This transport is used for handling pipe addresses generated by alias
1392 # or .forward files. It has a conventional name, since it is not actually
1393 # mentioned elsewhere in this configuration file. (A different name *can*
1394 # be specified via the "address_pipe_transport" option if you really want
1395 # to.) If the pipe generates any standard output, it is returned to the sender
1396 # of the message as a delivery error. Set return_fail_output instead if you
1397 # want this to happen only when the pipe fails to complete normally.
1398
1399 address_pipe:
1400   driver = pipe
1401   current_directory = ${home}
1402   environment = "EXTENSION=${substr_1:${local_part_suffix}}:\
1403                  EXT=${substr_1:${local_part_suffix}}:\
1404                  LOCAL=${local_part}${local_part_suffix}:\
1405                  RECIPIENT=${local_part}${local_part_suffix}@${domain}"
1406   return_output
1407   return_path_add
1408
1409 # This transport is used for handling file addresses generated by alias
1410 # or .forward files. It has a conventional name, since it is not actually
1411 # mentioned elsewhere in this configuration file.
1412
1413 address_file:
1414   driver = appendfile
1415   return_path_add
1416
1417 address_file_group:
1418   driver = appendfile
1419   return_path_add
1420   mode = 0660
1421   directory_mode = 0770
1422   mode_fail_narrower = false
1423
1424 # This transport is used for handling file addresses generated by alias
1425 # or .forward files if the path ends in "/", which causes it to be treated
1426 # as a directory name rather than a file name. Each message is then delivered
1427 # to a unique file in the directory. If instead you want all such deliveries to
1428 # be in the "maildir" format that is used by some other mail software,
1429 # uncomment the final option below. If this is done, the directory specified
1430 # in the .forward or alias file is the base maildir directory.
1431 #
1432 # Should you want to be able to specify either maildir or non-maildir
1433 # directory-style deliveries, then you must set up yet another transport,
1434 # called address_directory2. This is used if the path ends in "//" so should
1435 # be the one used for maildir, as the double slash suggests another level
1436 # of directory. In the absence of address_directory2, paths ending in //
1437 # are passed to address_directory.
1438
1439 address_directory:
1440   driver = appendfile
1441   check_string = 
1442   maildir_format
1443   message_prefix = ""
1444   message_suffix = ""
1445   return_path_add
1446
1447 # This transport is used for handling autoreplies generated by the filtering
1448 # option of the forwardfile director. It has a conventional name, since it
1449 # is not actually mentioned elsewhere in this configuration file.
1450 address_reply:
1451   driver = autoreply
1452
1453 # This transport is used for delivering messages over SMTP connections.
1454
1455 remote_smtp:
1456   driver = smtp
1457   connect_timeout = 1m
1458   delay_after_cutoff = false
1459 <%- if has_variable?("exim_ssl_certs") && exim_ssl_certs == "true" -%>
1460   tls_certificate = /etc/exim4/ssl/thishost.crt
1461   tls_privatekey = /etc/exim4/ssl/thishost.key
1462 <%- end -%>
1463
1464 <%=
1465 out = ""
1466 if not nodeinfo['smarthost'].empty?
1467 out = '
1468 remote_smtp_smarthost:
1469   debug_print = "T: remote_smtp_smarthost for $local_part@$domain"
1470   driver = smtp
1471   delay_after_cutoff = false
1472   port = '
1473   out += nodeinfo['smarthost_port'].to_s + "\n"
1474   if has_variable?("exim_ssl_certs") && exim_ssl_certs == "true"
1475     out += '  tls_tempfail_tryclear = false
1476   hosts_require_tls = ' + nodeinfo['smarthost'] + '
1477   tls_certificate = /etc/exim4/ssl/thishost.crt
1478   tls_privatekey = /etc/exim4/ssl/thishost.key
1479 '
1480   end
1481 end
1482 out
1483 %>
1484 # Send the message to procmail
1485 procmail_pipe:
1486   driver = pipe
1487   command = /usr/bin/procmail -a ${substr_1:${local_part_suffix}}}
1488   return_path_add
1489   user = ${local_part}
1490
1491 bsmtp:
1492   driver = appendfile
1493   batch_max = 100
1494   file = ${host}
1495   message_prefix = 
1496   message_suffix = 
1497   use_bsmtp
1498   user = ${extract{user}{\
1499                    ${lookup{$domain}partial-lsearch{/etc/exim4/bsmtp}\
1500                      {$value}fail}\
1501                    }}
1502
1503 <%- if nodeinfo['bugsmaster'] or nodeinfo['bugsmx'] -%>
1504 bugs_pipe:
1505   driver = pipe
1506   command = /org/bugs.debian.org/mail/run-procmail
1507   environment = "EXTENSION=${substr_1:${local_part_suffix}}:\
1508                  EXT=${substr_1:${local_part_suffix}}:\
1509                  LOCAL=${local_part}${local_part_suffix}:\
1510                  RECIPIENT=${local_part}${local_part_suffix}@${domain}"
1511   return_path_add
1512   return_output
1513   user = debbugs
1514
1515 <%- end -%>
1516 <%- if nodeinfo['rtmaster'] -%>
1517 rt_pipe:
1518   debug_print = "T: rt_pipe for $local_part${local_part_suffix}@$domain"
1519   driver = pipe
1520   return_fail_output
1521   environment = EXTENSION=${substr_1:${local_part_suffix}}
1522   allow_commands = /usr/bin/rt-mailgate
1523
1524 <%- end -%>
1525
1526 ######################################################################
1527 #                      RETRY CONFIGURATION                           #
1528 ######################################################################
1529
1530 # This single retry rule applies to all domains and all errors. It specifies
1531 # retries every 15 minutes for 2 hours, then increasing retry intervals,
1532 # starting at 2 hours and increasing each time by a factor of 1.5, up to 16
1533 # hours, then retries every 8 hours until 4 days have passed since the first
1534 # failed delivery.
1535
1536 # Domain               Error       Retries
1537 # ------               -----       -------
1538
1539
1540 begin retry
1541
1542 debian.org             *           F,2h,10m; G,16h,2h,1.5; F,14d,8h
1543 *                      * senders=: F,2h,10m
1544 *                      rcpt_4xx    F,2h,5m;  F,4h,10m; F,4d,15m
1545 *                      *           F,2h,15m; G,16h,2h,1.5; F,4d,8h
1546
1547 # End of Exim 4 configuration