DMARC documentation and license
[exim.git] / doc / doc-txt / experimental-spec.txt
1 From time to time, experimental features may be added to Exim.
2 While a feature is experimental, there will be a build-time
3 option whose name starts "EXPERIMENTAL_" that must be set in
4 order to include the feature. This file contains information
5 about experimental features, all of which are unstable and
6 liable to incompatible change.
7
8
9 PRDR support
10 --------------------------------------------------------------
11
12 Per-Recipient Data Reponse is an SMTP extension proposed by Eric Hall
13 in a (now-expired) IETF draft from 2007. It's not hit mainstream
14 use, but has apparently been implemented in the META1 MTA.
15
16 There is mention at http://mail.aegee.org/intern/sendmail.html
17 of a patch to sendmail "to make it PRDR capable".
18
19 ref: http://www.eric-a-hall.com/specs/draft-hall-prdr-00.txt
20
21 If Exim is built with EXPERIMENTAL_PRDR there is a new config
22 boolean "prdr_enable" which controls whether PRDR is advertised
23 as part of an EHLO response, a new "acl_data_smtp_prdr" ACL
24 (called for each recipient, after data arrives but before the
25 data ACL), and a new smtp transport option "hosts_try_prdr".
26
27 PRDR may be used to support per-user content filtering. Without it
28 one must defer any recipient after the first that has a different
29 content-filter configuration. With PRDR, the RCPT-time check
30 for this can be disabled when the MAIL-time $smtp_command included
31 "PRDR". Any required difference in behaviour of the main DATA-time
32 ACL should however depend on the PRDR-time ACL having run, as Exim
33 will avoid doing so in some situations (eg. single-recipient mails).
34
35
36
37 OCSP Stapling support
38 --------------------------------------------------------------
39
40 X.509 PKI certificates expire and can be revoked; to handle this, the
41 clients need some way to determine if a particular certificate, from a
42 particular Certificate Authority (CA), is still valid. There are three
43 main ways to do so.
44
45 The simplest way is to serve up a Certificate Revocation List (CRL) with
46 an ordinary web-server, regenerating the CRL before it expires. The
47 downside is that clients have to periodically re-download a potentially
48 huge file from every certificate authority it knows of.
49
50 The way with most moving parts at query time is Online Certificate
51 Status Protocol (OCSP), where the client verifies the certificate
52 against an OCSP server run by the CA. This lets the CA track all
53 usage of the certs. This requires running software with access to the
54 private key of the CA, to sign the responses to the OCSP queries. OCSP
55 is based on HTTP and can be proxied accordingly.
56
57 The only widespread OCSP server implementation (known to this writer)
58 comes as part of OpenSSL and aborts on an invalid request, such as
59 connecting to the port and then disconnecting. This requires
60 re-entering the passphrase each time some random client does this.
61
62 The third way is OCSP Stapling; in this, the server using a certificate
63 issued by the CA periodically requests an OCSP proof of validity from
64 the OCSP server, then serves it up inline as part of the TLS
65 negotiation. This approach adds no extra round trips, does not let the
66 CA track users, scales well with number of certs issued by the CA and is
67 resilient to temporary OCSP server failures, as long as the server
68 starts retrying to fetch an OCSP proof some time before its current
69 proof expires. The downside is that it requires server support.
70
71 If Exim is built with EXPERIMENTAL_OCSP and it was built with OpenSSL,
72 then it gains a new global option: "tls_ocsp_file".
73
74 The file specified therein is expected to be in DER format, and contain
75 an OCSP proof. Exim will serve it as part of the TLS handshake. This
76 option will be re-expanded for SNI, if the tls_certificate option
77 contains $tls_sni, as per other TLS options.
78
79 Exim does not at this time implement any support for fetching a new OCSP
80 proof. The burden is on the administrator to handle this, outside of
81 Exim. The file specified should be replaced atomically, so that the
82 contents are always valid. Exim will expand the "tls_ocsp_file" option
83 on each connection, so a new file will be handled transparently on the
84 next connection.
85
86 Exim will check for a valid next update timestamp in the OCSP proof;
87 if not present, or if the proof has expired, it will be ignored.
88
89 Also, given EXPERIMENTAL_OCSP and OpenSSL, the smtp transport gains
90 a "hosts_require_ocsp" option; a host-list for which an OCSP Stapling
91 is requested and required for the connection to proceed. The host(s)
92 should also be in "hosts_require_tls", and "tls_verify_certificates"
93 configured for the transport.
94
95 At this point in time, we're gathering feedback on use, to determine if
96 it's worth adding complexity to the Exim daemon to periodically re-fetch
97 OCSP files and somehow handling multiple files.
98
99
100
101
102 Brightmail AntiSpam (BMI) suppport
103 --------------------------------------------------------------
104
105 Brightmail AntiSpam is a commercial package. Please see
106 http://www.brightmail.com for more information on
107 the product. For the sake of clarity, we'll refer to it as
108 "BMI" from now on.
109
110
111 0) BMI concept and implementation overview
112
113 In contrast to how spam-scanning with SpamAssassin is
114 implemented in exiscan-acl, BMI is more suited for per
115 -recipient scanning of messages. However, each messages is
116 scanned only once, but multiple "verdicts" for multiple
117 recipients can be returned from the BMI server. The exiscan
118 implementation passes the message to the BMI server just
119 before accepting it. It then adds the retrieved verdicts to
120 the messages header file in the spool. These verdicts can then
121 be queried in routers, where operation is per-recipient
122 instead of per-message. To use BMI, you need to take the
123 following steps:
124
125 1) Compile Exim with BMI support
126 2) Set up main BMI options (top section of Exim config file)
127 3) Set up ACL control statement (ACL section of the config
128 file)
129 4) Set up your routers to use BMI verdicts (routers section
130 of the config file).
131 5) (Optional) Set up per-recipient opt-in information.
132
133 These four steps are explained in more details below.
134
135 1) Adding support for BMI at compile time
136
137 To compile with BMI support, you need to link Exim against
138 the Brighmail client SDK, consisting of a library
139 (libbmiclient_single.so) and a header file (bmi_api.h).
140 You'll also need to explicitly set a flag in the Makefile to
141 include BMI support in the Exim binary. Both can be achieved
142 with these lines in Local/Makefile:
143
144 EXPERIMENTAL_BRIGHTMAIL=yes
145 CFLAGS=-I/path/to/the/dir/with/the/includefile
146 EXTRALIBS_EXIM=-L/path/to/the/dir/with/the/library -lbmiclient_single
147
148 If you use other CFLAGS or EXTRALIBS_EXIM settings then
149 merge the content of these lines with them.
150
151 Note for BMI6.x users: You'll also have to add -lxml2_single
152 to the EXTRALIBS_EXIM line. Users of 5.5x do not need to do
153 this.
154
155 You should also include the location of
156 libbmiclient_single.so in your dynamic linker configuration
157 file (usually /etc/ld.so.conf) and run "ldconfig"
158 afterwards, or else the produced Exim binary will not be
159 able to find the library file.
160
161
162 2) Setting up BMI support in the Exim main configuration
163
164 To enable BMI support in the main Exim configuration, you
165 should set the path to the main BMI configuration file with
166 the "bmi_config_file" option, like this:
167
168 bmi_config_file = /opt/brightmail/etc/brightmail.cfg
169
170 This must go into section 1 of Exim's configuration file (You
171 can put it right on top). If you omit this option, it
172 defaults to /opt/brightmail/etc/brightmail.cfg.
173
174 Note for BMI6.x users: This file is in XML format in V6.xx
175 and its name is /opt/brightmail/etc/bmiconfig.xml. So BMI
176 6.x users MUST set the bmi_config_file option.
177
178
179 3) Set up ACL control statement
180
181 To optimize performance, it makes sense only to process
182 messages coming from remote, untrusted sources with the BMI
183 server. To set up a messages for processing by the BMI
184 server, you MUST set the "bmi_run" control statement in any
185 ACL for an incoming message. You will typically do this in
186 an "accept" block in the "acl_check_rcpt" ACL. You should
187 use the "accept" block(s) that accept messages from remote
188 servers for your own domain(s). Here is an example that uses
189 the "accept" blocks from Exim's default configuration file:
190
191
192 accept domains = +local_domains
193 endpass
194 verify = recipient
195 control = bmi_run
196
197 accept domains = +relay_to_domains
198 endpass
199 verify = recipient
200 control = bmi_run
201
202 If bmi_run is not set in any ACL during reception of the
203 message, it will NOT be passed to the BMI server.
204
205
206 4) Setting up routers to use BMI verdicts
207
208 When a message has been run through the BMI server, one or
209 more "verdicts" are present. Different recipients can have
210 different verdicts. Each recipient is treated individually
211 during routing, so you can query the verdicts by recipient
212 at that stage. From Exim's view, a verdict can have the
213 following outcomes:
214
215 o deliver the message normally
216 o deliver the message to an alternate location
217 o do not deliver the message
218
219 To query the verdict for a recipient, the implementation
220 offers the following tools:
221
222
223 - Boolean router preconditions. These can be used in any
224 router. For a simple implementation of BMI, these may be
225 all that you need. The following preconditions are
226 available:
227
228 o bmi_deliver_default
229
230 This precondition is TRUE if the verdict for the
231 recipient is to deliver the message normally. If the
232 message has not been processed by the BMI server, this
233 variable defaults to TRUE.
234
235 o bmi_deliver_alternate
236
237 This precondition is TRUE if the verdict for the
238 recipient is to deliver the message to an alternate
239 location. You can get the location string from the
240 $bmi_alt_location expansion variable if you need it. See
241 further below. If the message has not been processed by
242 the BMI server, this variable defaults to FALSE.
243
244 o bmi_dont_deliver
245
246 This precondition is TRUE if the verdict for the
247 recipient is NOT to deliver the message to the
248 recipient. You will typically use this precondition in a
249 top-level blackhole router, like this:
250
251 # don't deliver messages handled by the BMI server
252 bmi_blackhole:
253 driver = redirect
254 bmi_dont_deliver
255 data = :blackhole:
256
257 This router should be on top of all others, so messages
258 that should not be delivered do not reach other routers
259 at all. If the message has not been processed by
260 the BMI server, this variable defaults to FALSE.
261
262
263 - A list router precondition to query if rules "fired" on
264 the message for the recipient. Its name is "bmi_rule". You
265 use it by passing it a colon-separated list of rule
266 numbers. You can use this condition to route messages that
267 matched specific rules. Here is an example:
268
269 # special router for BMI rule #5, #8 and #11
270 bmi_rule_redirect:
271 driver = redirect
272 bmi_rule = 5:8:11
273 data = postmaster@mydomain.com
274
275
276 - Expansion variables. Several expansion variables are set
277 during routing. You can use them in custom router
278 conditions, for example. The following variables are
279 available:
280
281 o $bmi_base64_verdict
282
283 This variable will contain the BASE64 encoded verdict
284 for the recipient being routed. You can use it to add a
285 header to messages for tracking purposes, for example:
286
287 localuser:
288 driver = accept
289 check_local_user
290 headers_add = X-Brightmail-Verdict: $bmi_base64_verdict
291 transport = local_delivery
292
293 If there is no verdict available for the recipient being
294 routed, this variable contains the empty string.
295
296 o $bmi_base64_tracker_verdict
297
298 This variable will contain a BASE64 encoded subset of
299 the verdict information concerning the "rules" that
300 fired on the message. You can add this string to a
301 header, commonly named "X-Brightmail-Tracker". Example:
302
303 localuser:
304 driver = accept
305 check_local_user
306 headers_add = X-Brightmail-Tracker: $bmi_base64_tracker_verdict
307 transport = local_delivery
308
309 If there is no verdict available for the recipient being
310 routed, this variable contains the empty string.
311
312 o $bmi_alt_location
313
314 If the verdict is to redirect the message to an
315 alternate location, this variable will contain the
316 alternate location string returned by the BMI server. In
317 its default configuration, this is a header-like string
318 that can be added to the message with "headers_add". If
319 there is no verdict available for the recipient being
320 routed, or if the message is to be delivered normally,
321 this variable contains the empty string.
322
323 o $bmi_deliver
324
325 This is an additional integer variable that can be used
326 to query if the message should be delivered at all. You
327 should use router preconditions instead if possible.
328
329 $bmi_deliver is '0': the message should NOT be delivered.
330 $bmi_deliver is '1': the message should be delivered.
331
332
333 IMPORTANT NOTE: Verdict inheritance.
334 The message is passed to the BMI server during message
335 reception, using the target addresses from the RCPT TO:
336 commands in the SMTP transaction. If recipients get expanded
337 or re-written (for example by aliasing), the new address(es)
338 inherit the verdict from the original address. This means
339 that verdicts also apply to all "child" addresses generated
340 from top-level addresses that were sent to the BMI server.
341
342
343 5) Using per-recipient opt-in information (Optional)
344
345 The BMI server features multiple scanning "profiles" for
346 individual recipients. These are usually stored in a LDAP
347 server and are queried by the BMI server itself. However,
348 you can also pass opt-in data for each recipient from the
349 MTA to the BMI server. This is particularly useful if you
350 already look up recipient data in Exim anyway (which can
351 also be stored in a SQL database or other source). This
352 implementation enables you to pass opt-in data to the BMI
353 server in the RCPT ACL. This works by setting the
354 'bmi_optin' modifier in a block of that ACL. If should be
355 set to a list of comma-separated strings that identify the
356 features which the BMI server should use for that particular
357 recipient. Ideally, you would use the 'bmi_optin' modifier
358 in the same ACL block where you set the 'bmi_run' control
359 flag. Here is an example that will pull opt-in data for each
360 recipient from a flat file called
361 '/etc/exim/bmi_optin_data'.
362
363 The file format:
364
365 user1@mydomain.com: <OPTIN STRING1>:<OPTIN STRING2>
366 user2@thatdomain.com: <OPTIN STRING3>
367
368
369 The example:
370
371 accept domains = +relay_to_domains
372 endpass
373 verify = recipient
374 bmi_optin = ${lookup{$local_part@$domain}lsearch{/etc/exim/bmi_optin_data}}
375 control = bmi_run
376
377 Of course, you can also use any other lookup method that
378 Exim supports, including LDAP, Postgres, MySQL, Oracle etc.,
379 as long as the result is a list of colon-separated opt-in
380 strings.
381
382 For a list of available opt-in strings, please contact your
383 Brightmail representative.
384
385
386
387
388 Sender Policy Framework (SPF) support
389 --------------------------------------------------------------
390
391 To learn more about SPF, visit http://www.openspf.org. This
392 document does not explain the SPF fundamentals, you should
393 read and understand the implications of deploying SPF on your
394 system before doing so.
395
396 SPF support is added via the libspf2 library. Visit
397
398 http://www.libspf2.org/
399
400 to obtain a copy, then compile and install it. By default,
401 this will put headers in /usr/local/include and the static
402 library in /usr/local/lib.
403
404 To compile Exim with SPF support, set these additional flags in
405 Local/Makefile:
406
407 EXPERIMENTAL_SPF=yes
408 CFLAGS=-DSPF -I/usr/local/include
409 EXTRALIBS_EXIM=-L/usr/local/lib -lspf2
410
411 This assumes that the libspf2 files are installed in
412 their default locations.
413
414 You can now run SPF checks in incoming SMTP by using the "spf"
415 ACL condition in either the MAIL, RCPT or DATA ACLs. When
416 using it in the RCPT ACL, you can make the checks dependent on
417 the RCPT address (or domain), so you can check SPF records
418 only for certain target domains. This gives you the
419 possibility to opt-out certain customers that do not want
420 their mail to be subject to SPF checking.
421
422 The spf condition takes a list of strings on its right-hand
423 side. These strings describe the outcome of the SPF check for
424 which the spf condition should succeed. Valid strings are:
425
426 o pass The SPF check passed, the sending host
427 is positively verified by SPF.
428 o fail The SPF check failed, the sending host
429 is NOT allowed to send mail for the domain
430 in the envelope-from address.
431 o softfail The SPF check failed, but the queried
432 domain can't absolutely confirm that this
433 is a forgery.
434 o none The queried domain does not publish SPF
435 records.
436 o neutral The SPF check returned a "neutral" state.
437 This means the queried domain has published
438 a SPF record, but wants to allow outside
439 servers to send mail under its domain as well.
440 o err_perm This indicates a syntax error in the SPF
441 record of the queried domain. This should be
442 treated like "none".
443 o err_temp This indicates a temporary error during all
444 processing, including Exim's SPF processing.
445 You may defer messages when this occurs.
446
447 You can prefix each string with an exclamation mark to invert
448 is meaning, for example "!fail" will match all results but
449 "fail". The string list is evaluated left-to-right, in a
450 short-circuit fashion. When a string matches the outcome of
451 the SPF check, the condition succeeds. If none of the listed
452 strings matches the outcome of the SPF check, the condition
453 fails.
454
455 Here is an example to fail forgery attempts from domains that
456 publish SPF records:
457
458 /* -----------------
459 deny message = $sender_host_address is not allowed to send mail from ${if def:sender_address_domain {$sender_address_domain}{$sender_helo_name}}. \
460 Please see http://www.openspf.org/Why?scope=${if def:sender_address_domain {mfrom}{helo}};identity=${if def:sender_address_domain {$sender_address}{$sender_helo_name}};ip=$sender_host_address
461 spf = fail
462 --------------------- */
463
464 You can also give special treatment to specific domains:
465
466 /* -----------------
467 deny message = AOL sender, but not from AOL-approved relay.
468 sender_domains = aol.com
469 spf = fail:neutral
470 --------------------- */
471
472 Explanation: AOL publishes SPF records, but is liberal and
473 still allows non-approved relays to send mail from aol.com.
474 This will result in a "neutral" state, while mail from genuine
475 AOL servers will result in "pass". The example above takes
476 this into account and treats "neutral" like "fail", but only
477 for aol.com. Please note that this violates the SPF draft.
478
479 When the spf condition has run, it sets up several expansion
480 variables.
481
482 $spf_header_comment
483 This contains a human-readable string describing the outcome
484 of the SPF check. You can add it to a custom header or use
485 it for logging purposes.
486
487 $spf_received
488 This contains a complete Received-SPF: header that can be
489 added to the message. Please note that according to the SPF
490 draft, this header must be added at the top of the header
491 list. Please see section 10 on how you can do this.
492
493 Note: in case of "Best-guess" (see below), the convention is
494 to put this string in a header called X-SPF-Guess: instead.
495
496 $spf_result
497 This contains the outcome of the SPF check in string form,
498 one of pass, fail, softfail, none, neutral, err_perm or
499 err_temp.
500
501 $spf_smtp_comment
502 This contains a string that can be used in a SMTP response
503 to the calling party. Useful for "fail".
504
505 In addition to SPF, you can also perform checks for so-called
506 "Best-guess". Strictly speaking, "Best-guess" is not standard
507 SPF, but it is supported by the same framework that enables SPF
508 capability. Refer to http://www.openspf.org/FAQ/Best_guess_record
509 for a description of what it means.
510
511 To access this feature, simply use the spf_guess condition in place
512 of the spf one. For example:
513
514 /* -----------------
515 deny message = $sender_host_address doesn't look trustworthy to me
516 spf_guess = fail
517 --------------------- */
518
519 In case you decide to reject messages based on this check, you
520 should note that although it uses the same framework, "Best-guess"
521 is NOT SPF, and therefore you should not mention SPF at all in your
522 reject message.
523
524 When the spf_guess condition has run, it sets up the same expansion
525 variables as when spf condition is run, described above.
526
527 Additionally, since Best-guess is not standardized, you may redefine
528 what "Best-guess" means to you by redefining spf_guess variable in
529 global config. For example, the following:
530
531 /* -----------------
532 spf_guess = v=spf1 a/16 mx/16 ptr ?all
533 --------------------- */
534
535 would relax host matching rules to a broader network range.
536
537
538 SRS (Sender Rewriting Scheme) Support
539 --------------------------------------------------------------
540
541 Exiscan currently includes SRS support via Miles Wilton's
542 libsrs_alt library. The current version of the supported
543 library is 0.5.
544
545 In order to use SRS, you must get a copy of libsrs_alt from
546
547 http://srs.mirtol.com/
548
549 Unpack the tarball, then refer to MTAs/README.EXIM
550 to proceed. You need to set
551
552 EXPERIMENTAL_SRS=yes
553
554 in your Local/Makefile.
555
556
557 DCC Support
558 --------------------------------------------------------------
559
560 *) Building exim
561
562 In order to build exim with DCC support add
563
564 EXPERIMENTAL_DCC=yes
565
566 to your Makefile. (Re-)build/install exim. exim -d should show
567 EXPERIMENTAL_DCC under "Support for".
568
569
570 *) Configuration
571
572 In the main section of exim.cf add at least
573 dccifd_address = /usr/local/dcc/var/dccifd
574 or
575 dccifd_address = <ip> <port>
576
577 In the DATA ACL you can use the new condition
578 dcc = *
579
580 After that "$dcc_header" contains the X-DCC-Header.
581
582 Return values are:
583 fail for overall "R", "G" from dccifd
584 defer for overall "T" from dccifd
585 accept for overall "A", "S" from dccifd
586
587 dcc = */defer_ok works as for spamd.
588
589 The "$dcc_result" variable contains the overall result from DCC
590 answer. There will an X-DCC: header added to the mail.
591
592 Usually you'll use
593 defer !dcc = *
594 to greylist with DCC.
595
596 If you set, in the main section,
597 dcc_direct_add_header = true
598 then the dcc header will be added "in deep" and if the spool
599 file was already written it gets removed. This forces Exim to
600 write it again if needed. This helps to get the DCC Header
601 through to eg. SpamAssassin.
602
603 If you want to pass even more headers in the middle of the
604 DATA stage you can set
605 $acl_m_dcc_add_header
606 to tell the DCC routines to add more information; eg, you might set
607 this to some results from ClamAV. Be careful. Header syntax is
608 not checked and is added "as is".
609
610 In case you've troubles with sites sending the same queue items from several
611 hosts and fail to get through greylisting you can use
612 $acl_m_dcc_override_client_ip
613
614 Setting $acl_m_dcc_override_client_ip to an IP address overrides the default
615 of $sender_host_address. eg. use the following ACL in DATA stage:
616
617 warn set acl_m_dcc_override_client_ip = \
618 ${lookup{$sender_helo_name}nwildlsearch{/etc/mail/multipleip_sites}{$value}{}}
619 condition = ${if def:acl_m_dcc_override_client_ip}
620 log_message = dbg: acl_m_dcc_override_client_ip set to \
621 $acl_m_dcc_override_client_ip
622
623 Then set something like
624 # cat /etc/mail/multipleip_sites
625 mout-xforward.gmx.net 82.165.159.12
626 mout.gmx.net 212.227.15.16
627
628 Use a reasonable IP. eg. one the sending cluster acutally uses.
629
630 DMARC Support
631 --------------------------------------------------------------
632
633 DMARC combines feedback from SPF, DKIM, and header From: in order
634 to attempt to provide better indicators of the authenticity of an
635 email. This document does not explain the fundamentals, you
636 should read and understand how it works by visiting the website at
637 http://www.dmarc.org/.
638
639 DMARC support is added via the libopendmarc library. Visit:
640
641 http://sourceforge.net/projects/opendmarc/
642
643 to obtain a copy, or find it in your favorite rpm package
644 repository. If building from source, this description assumes
645 that headers will be in /usr/local/include, and that the libraries
646 are in /usr/local/lib.
647
648 1. To compile Exim with DMARC support, you must first enable SPF.
649 Please read the above section on enabling the EXPERIMENTAL_SPF
650 feature. You must also have DKIM support, so you cannot set the
651 DISABLE_DKIM feature. Once both of those conditions have been met
652 you can enable DMARC in Local/Makefile:
653
654 EXPERIMENTAL_DMARC=yes
655 LDFLAGS += -lopendmarc
656 # CFLAGS += -I/usr/local/include
657 # LDFLAGS += -L/usr/local/lib
658
659 The first line sets the feature to include the correct code, and
660 the second line says to link the libopendmarc libraries into the
661 exim binary. The commented out lines should be uncommented if you
662 built opendmarc from source and installed in the default location.
663 Adjust the paths if you installed them elsewhere, but you do not
664 need to uncomment them if an rpm (or you) installed them in the
665 package controlled locations (/usr/include and /usr/lib).
666
667
668 2. Use the following global settings to configure DMARC:
669
670 Required:
671 dmarc_tld_file Defines the location of a text file of valid
672 top level domains the opendmarc library uses
673 during domain parsing. Maintained by Mozilla,
674 the most current version can be downloaded
675 from a link at http://publicsuffix.org/list/.
676
677 Optional:
678 dmarc_history_file Defines the location of a file to log results
679 of dmarc verification on inbound emails. The
680 contents are importable by the opendmarc tools
681 which will manage the data, send out DMARC
682 reports, and expire the data. Make sure the
683 directory of this file is writable by the user
684 exim runs as.
685
686 dmarc_forensic_sender The email address to use when sending a
687 forensic report detailing alignment failures
688 if a sender domain's dmarc record specifies it
689 and you have configured Exim to send them.
690 Default: do-not-reply@$default_hostname
691
692
693 3. By default, the DMARC processing will run for any remote,
694 non-authenticated user. It makes sense to only verify DMARC
695 status of messages coming from remote, untrusted sources. You can
696 use standard conditions such as hosts, senders, etc, to decide that
697 DMARC verification should *not* be performed for them and disable
698 DMARC with a control setting:
699
700 control = dmarc_verify_disable
701
702 A DMARC record can also specify a "forensic address", which gives
703 exim an email address to submit reports about failed alignment.
704 Exim does not do this by default because in certain conditions it
705 results in unintended information leakage (what lists a user might
706 be subscribed to, etc). You must configure exim to submit forensic
707 reports to the owner of the domain. If the DMARC record contains a
708 forensic address and you specify the control statement below, then
709 exim will send these forensic emails. It's also advised that you
710 configure a dmarc_forensic_sender because the default sender address
711 construction might be inadequate.
712
713 control = dmarc_forensic_enable
714
715 (AGAIN: You can choose not to send these forensic reports by simply
716 not putting the dmarc_forensic_enable control line at any point in
717 your exim config. If you don't tell it to send them, it will not
718 send them.)
719
720 There are no options to either control. Both must appear before
721 the DATA acl.
722
723
724 4. You can now run DMARC checks in incoming SMTP by using the
725 "dmarc_status" ACL condition in the DATA ACL. You are required to
726 call the spf condition first in the ACLs, then the "dmarc_status"
727 condition. Putting this condition in the ACLs is required in order
728 for a DMARC check to actually occur. All of the variables are set
729 up before the DATA ACL, but there is no actual DMARC check that
730 occurs until a "dmarc_status" condition is encountered in the ACLs.
731
732 The dmarc_status condition takes a list of strings on its
733 right-hand side. These strings describe recommended action based
734 on the DMARC check. To understand what the policy recommendations
735 mean, refer to the DMARC website above. Valid strings are:
736
737 o accept The DMARC check passed and the library recommends
738 accepting the email.
739 o reject The DMARC check failed and the library recommends
740 rejecting the email.
741 o quarantine The DMARC check failed and the library recommends
742 keeping it for further inspection.
743 o norecord No policy section in the DMARC record for this
744 sender domain.
745 o nofrom Unable to determine the domain of the sender.
746 o none There is no DMARC record for this sender domain.
747 o error Library error or dns error.
748
749 You can prefix each string with an exclamation mark to invert its
750 meaning, for example "!accept" will match all results but
751 "accept". The string list is evaluated left-to-right in a
752 short-circuit fashion. When a string matches the outcome of the
753 DMARC check, the condition succeeds. If none of the listed
754 strings matches the outcome of the DMARC check, the condition
755 fails.
756
757 Of course, you can also use any other lookup method that Exim
758 supports, including LDAP, Postgres, MySQL, etc, as long as the
759 result is a list of colon-separated strings;
760
761 Several expansion variables are set before the DATA ACL is
762 processed, and you can use them in this ACL. The following
763 expansion variables are available:
764
765 o $dmarc_status
766 This is a one word status indicating what the DMARC library
767 thinks of the email.
768
769 o $dmarc_status_text
770 This is a slightly longer, human readable status.
771
772 o $dmarc_used_domain
773 This is the domain which DMARC used to look up the DMARC
774 policy record.
775
776 o $dmarc_ar_header
777 This is the entire Authentication-Results header which you can
778 add using an add_header modifier.
779
780
781 5. How to enable DMARC advanced operation:
782 By default, Exim's DMARC configuration is intended to be
783 non-intrusive and conservative. To facilitate this, Exim will not
784 create any type of logging files without explicit configuration by
785 you, the admin. Nor will Exim send out any emails/reports about
786 DMARC issues without explicit configuration by you, the admin (other
787 than typical bounce messages that may come about due to ACL
788 processing or failure delivery issues).
789
790 In order to log statistics suitable to be imported by the opendmarc
791 tools, you need to:
792 a. Configure the global setting dmarc_history_file.
793 b. Configure cron jobs to call the appropriate opendmarc history
794 import scripts and truncating the dmarc_history_file.
795
796 In order to send forensic reports, you need to:
797 a. Configure the global setting dmarc_forensic_sender.
798 b. Configure, somewhere before the DATA ACL, the control option to
799 enable sending DMARC forensic reports.
800
801
802 6. Example usage:
803 (RCPT ACL)
804 warn domains = +local_domains
805 hosts = +local_hosts
806 control = dmarc_verify_disable
807
808 warn !domains = +screwed_up_dmarc_records
809 control = dmarc_enable_forensic
810
811 (DATA ACL)
812 warn dmarc_status = accept : none : off
813 !authenticated = *
814 log_message = DMARC DEBUG: $dmarc_status $dmarc_used_domain
815 add_header = $dmarc_ar_header
816
817 warn dmarc_status = !accept
818 !authenticated = *
819 log_message = DMARC DEBUG: '$dmarc_status' for $dmarc_used_domain
820
821 warn dmarc_status = quarantine
822 !authenticated = *
823 set $acl_m_quarantine = 1
824 # Do something in a transport with this flag variable
825
826 deny dmarc_status = reject
827 !authenticated = *
828 message = Message from $domain_used_domain failed sender's DMARC policy, REJECT
829
830
831
832
833 --------------------------------------------------------------
834 End of file
835 --------------------------------------------------------------