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