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