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