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