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