Merge branch 'master' of ssh://git.exim.org/home/git/exim
[exim.git] / doc / doc-txt / experimental-spec.txt
CommitLineData
0b23848a 1$Cambridge: exim/doc/doc-txt/experimental-spec.txt,v 1.12 2009/06/11 14:07:57 tom Exp $
ee161e8f 2
7bafa7d9
TK
3From time to time, experimental features may be added to Exim.
4While a feature is experimental, there will be a build-time
5option whose name starts "EXPERIMENTAL_" that must be set in
6order to include the feature. This file contains information
7about experimenatal features, all of which are unstable and
ee161e8f
PH
8liable to incompatibile change.
9
10
0b23848a 11Brightmail AntiSpam (BMI) suppport
ee161e8f
PH
12--------------------------------------------------------------
13
14Brightmail AntiSpam is a commercial package. Please see
15http://www.brightmail.com for more information on
16the product. For the sake of clarity, we'll refer to it as
17"BMI" from now on.
18
19
200) BMI concept and implementation overview
21
22In contrast to how spam-scanning with SpamAssassin is
23implemented in exiscan-acl, BMI is more suited for per
24-recipient scanning of messages. However, each messages is
25scanned only once, but multiple "verdicts" for multiple
26recipients can be returned from the BMI server. The exiscan
27implementation passes the message to the BMI server just
28before accepting it. It then adds the retrieved verdicts to
29the messages header file in the spool. These verdicts can then
30be queried in routers, where operation is per-recipient
31instead of per-message. To use BMI, you need to take the
32following steps:
33
34 1) Compile Exim with BMI support
3ec3e3bb 35 2) Set up main BMI options (top section of Exim config file)
ee161e8f
PH
36 3) Set up ACL control statement (ACL section of the config
37 file)
38 4) Set up your routers to use BMI verdicts (routers section
39 of the config file).
40 5) (Optional) Set up per-recipient opt-in information.
41
8ff3788c 42These four steps are explained in more details below.
ee161e8f
PH
43
441) Adding support for BMI at compile time
45
46 To compile with BMI support, you need to link Exim against
47 the Brighmail client SDK, consisting of a library
48 (libbmiclient_single.so) and a header file (bmi_api.h).
49 You'll also need to explicitly set a flag in the Makefile to
50 include BMI support in the Exim binary. Both can be achieved
51 with these lines in Local/Makefile:
52
53 EXPERIMENTAL_BRIGHTMAIL=yes
47bbda99 54 CFLAGS=-I/path/to/the/dir/with/the/includefile
ee161e8f 55 EXTRALIBS_EXIM=-L/path/to/the/dir/with/the/library -lbmiclient_single
8ff3788c 56
ee161e8f
PH
57 If you use other CFLAGS or EXTRALIBS_EXIM settings then
58 merge the content of these lines with them.
59
7c0c8547 60 Note for BMI6.x users: You'll also have to add -lxml2_single
ee161e8f
PH
61 to the EXTRALIBS_EXIM line. Users of 5.5x do not need to do
62 this.
8ff3788c 63
ee161e8f
PH
64 You should also include the location of
65 libbmiclient_single.so in your dynamic linker configuration
66 file (usually /etc/ld.so.conf) and run "ldconfig"
67 afterwards, or else the produced Exim binary will not be
68 able to find the library file.
69
70
3ec3e3bb 712) Setting up BMI support in the Exim main configuration
ee161e8f 72
3ec3e3bb 73 To enable BMI support in the main Exim configuration, you
ee161e8f
PH
74 should set the path to the main BMI configuration file with
75 the "bmi_config_file" option, like this:
8ff3788c 76
ee161e8f 77 bmi_config_file = /opt/brightmail/etc/brightmail.cfg
8ff3788c 78
3ec3e3bb 79 This must go into section 1 of Exim's configuration file (You
ee161e8f
PH
80 can put it right on top). If you omit this option, it
81 defaults to /opt/brightmail/etc/brightmail.cfg.
82
83 Note for BMI6.x users: This file is in XML format in V6.xx
84 and its name is /opt/brightmail/etc/bmiconfig.xml. So BMI
85 6.x users MUST set the bmi_config_file option.
8ff3788c 86
ee161e8f
PH
87
883) Set up ACL control statement
89
90 To optimize performance, it makes sense only to process
91 messages coming from remote, untrusted sources with the BMI
92 server. To set up a messages for processing by the BMI
93 server, you MUST set the "bmi_run" control statement in any
94 ACL for an incoming message. You will typically do this in
95 an "accept" block in the "acl_check_rcpt" ACL. You should
96 use the "accept" block(s) that accept messages from remote
97 servers for your own domain(s). Here is an example that uses
3ec3e3bb 98 the "accept" blocks from Exim's default configuration file:
8ff3788c 99
ee161e8f
PH
100
101 accept domains = +local_domains
102 endpass
103 verify = recipient
104 control = bmi_run
105
106 accept domains = +relay_to_domains
107 endpass
108 verify = recipient
109 control = bmi_run
8ff3788c 110
ee161e8f
PH
111 If bmi_run is not set in any ACL during reception of the
112 message, it will NOT be passed to the BMI server.
113
114
1154) Setting up routers to use BMI verdicts
116
117 When a message has been run through the BMI server, one or
118 more "verdicts" are present. Different recipients can have
119 different verdicts. Each recipient is treated individually
120 during routing, so you can query the verdicts by recipient
3ec3e3bb 121 at that stage. From Exim's view, a verdict can have the
ee161e8f 122 following outcomes:
8ff3788c 123
ee161e8f
PH
124 o deliver the message normally
125 o deliver the message to an alternate location
126 o do not deliver the message
8ff3788c 127
ee161e8f
PH
128 To query the verdict for a recipient, the implementation
129 offers the following tools:
8ff3788c
TK
130
131
ee161e8f
PH
132 - Boolean router preconditions. These can be used in any
133 router. For a simple implementation of BMI, these may be
134 all that you need. The following preconditions are
135 available:
8ff3788c 136
ee161e8f 137 o bmi_deliver_default
8ff3788c 138
ee161e8f
PH
139 This precondition is TRUE if the verdict for the
140 recipient is to deliver the message normally. If the
141 message has not been processed by the BMI server, this
142 variable defaults to TRUE.
8ff3788c 143
ee161e8f 144 o bmi_deliver_alternate
8ff3788c 145
ee161e8f
PH
146 This precondition is TRUE if the verdict for the
147 recipient is to deliver the message to an alternate
148 location. You can get the location string from the
149 $bmi_alt_location expansion variable if you need it. See
150 further below. If the message has not been processed by
151 the BMI server, this variable defaults to FALSE.
8ff3788c 152
ee161e8f 153 o bmi_dont_deliver
8ff3788c 154
ee161e8f
PH
155 This precondition is TRUE if the verdict for the
156 recipient is NOT to deliver the message to the
157 recipient. You will typically use this precondition in a
158 top-level blackhole router, like this:
8ff3788c 159
ee161e8f
PH
160 # don't deliver messages handled by the BMI server
161 bmi_blackhole:
162 driver = redirect
163 bmi_dont_deliver
164 data = :blackhole:
8ff3788c 165
ee161e8f
PH
166 This router should be on top of all others, so messages
167 that should not be delivered do not reach other routers
168 at all. If the message has not been processed by
169 the BMI server, this variable defaults to FALSE.
8ff3788c
TK
170
171
ee161e8f
PH
172 - A list router precondition to query if rules "fired" on
173 the message for the recipient. Its name is "bmi_rule". You
174 use it by passing it a colon-separated list of rule
175 numbers. You can use this condition to route messages that
176 matched specific rules. Here is an example:
8ff3788c 177
ee161e8f
PH
178 # special router for BMI rule #5, #8 and #11
179 bmi_rule_redirect:
180 driver = redirect
181 bmi_rule = 5:8:11
182 data = postmaster@mydomain.com
8ff3788c
TK
183
184
ee161e8f
PH
185 - Expansion variables. Several expansion variables are set
186 during routing. You can use them in custom router
187 conditions, for example. The following variables are
188 available:
8ff3788c 189
ee161e8f 190 o $bmi_base64_verdict
8ff3788c 191
ee161e8f
PH
192 This variable will contain the BASE64 encoded verdict
193 for the recipient being routed. You can use it to add a
194 header to messages for tracking purposes, for example:
8ff3788c 195
ee161e8f
PH
196 localuser:
197 driver = accept
198 check_local_user
199 headers_add = X-Brightmail-Verdict: $bmi_base64_verdict
200 transport = local_delivery
8ff3788c 201
ee161e8f
PH
202 If there is no verdict available for the recipient being
203 routed, this variable contains the empty string.
8ff3788c 204
ee161e8f 205 o $bmi_base64_tracker_verdict
8ff3788c 206
ee161e8f
PH
207 This variable will contain a BASE64 encoded subset of
208 the verdict information concerning the "rules" that
209 fired on the message. You can add this string to a
210 header, commonly named "X-Brightmail-Tracker". Example:
8ff3788c 211
ee161e8f
PH
212 localuser:
213 driver = accept
214 check_local_user
215 headers_add = X-Brightmail-Tracker: $bmi_base64_tracker_verdict
216 transport = local_delivery
8ff3788c 217
ee161e8f
PH
218 If there is no verdict available for the recipient being
219 routed, this variable contains the empty string.
8ff3788c 220
ee161e8f 221 o $bmi_alt_location
8ff3788c 222
ee161e8f
PH
223 If the verdict is to redirect the message to an
224 alternate location, this variable will contain the
225 alternate location string returned by the BMI server. In
226 its default configuration, this is a header-like string
227 that can be added to the message with "headers_add". If
228 there is no verdict available for the recipient being
229 routed, or if the message is to be delivered normally,
230 this variable contains the empty string.
8ff3788c 231
ee161e8f 232 o $bmi_deliver
8ff3788c 233
ee161e8f
PH
234 This is an additional integer variable that can be used
235 to query if the message should be delivered at all. You
236 should use router preconditions instead if possible.
8ff3788c 237
ee161e8f
PH
238 $bmi_deliver is '0': the message should NOT be delivered.
239 $bmi_deliver is '1': the message should be delivered.
8ff3788c
TK
240
241
ee161e8f
PH
242 IMPORTANT NOTE: Verdict inheritance.
243 The message is passed to the BMI server during message
244 reception, using the target addresses from the RCPT TO:
245 commands in the SMTP transaction. If recipients get expanded
246 or re-written (for example by aliasing), the new address(es)
247 inherit the verdict from the original address. This means
248 that verdicts also apply to all "child" addresses generated
249 from top-level addresses that were sent to the BMI server.
8ff3788c
TK
250
251
ee161e8f
PH
2525) Using per-recipient opt-in information (Optional)
253
254 The BMI server features multiple scanning "profiles" for
255 individual recipients. These are usually stored in a LDAP
256 server and are queried by the BMI server itself. However,
257 you can also pass opt-in data for each recipient from the
258 MTA to the BMI server. This is particularly useful if you
3ec3e3bb 259 already look up recipient data in Exim anyway (which can
ee161e8f
PH
260 also be stored in a SQL database or other source). This
261 implementation enables you to pass opt-in data to the BMI
262 server in the RCPT ACL. This works by setting the
263 'bmi_optin' modifier in a block of that ACL. If should be
264 set to a list of comma-separated strings that identify the
265 features which the BMI server should use for that particular
266 recipient. Ideally, you would use the 'bmi_optin' modifier
267 in the same ACL block where you set the 'bmi_run' control
268 flag. Here is an example that will pull opt-in data for each
269 recipient from a flat file called
270 '/etc/exim/bmi_optin_data'.
8ff3788c 271
ee161e8f 272 The file format:
8ff3788c 273
ee161e8f
PH
274 user1@mydomain.com: <OPTIN STRING1>:<OPTIN STRING2>
275 user2@thatdomain.com: <OPTIN STRING3>
8ff3788c
TK
276
277
ee161e8f 278 The example:
8ff3788c 279
ee161e8f
PH
280 accept domains = +relay_to_domains
281 endpass
282 verify = recipient
283 bmi_optin = ${lookup{$local_part@$domain}lsearch{/etc/exim/bmi_optin_data}}
8ff3788c
TK
284 control = bmi_run
285
ee161e8f 286 Of course, you can also use any other lookup method that
3ec3e3bb 287 Exim supports, including LDAP, Postgres, MySQL, Oracle etc.,
ee161e8f
PH
288 as long as the result is a list of colon-separated opt-in
289 strings.
8ff3788c 290
ee161e8f
PH
291 For a list of available opt-in strings, please contact your
292 Brightmail representative.
ee161e8f 293
8ff3788c
TK
294
295
296
0b23848a 297Sender Policy Framework (SPF) support
ee161e8f
PH
298--------------------------------------------------------------
299
f413481d 300To learn more about SPF, visit http://www.openspf.org. This
ee161e8f
PH
301document does not explain the SPF fundamentals, you should
302read and understand the implications of deploying SPF on your
303system before doing so.
304
8ff3788c 305SPF support is added via the libspf2 library. Visit
ee161e8f
PH
306
307 http://www.libspf2.org/
8ff3788c 308
ee161e8f
PH
309to obtain a copy, then compile and install it. By default,
310this will put headers in /usr/local/include and the static
311library in /usr/local/lib.
312
3ec3e3bb 313To compile Exim with SPF support, set these additional flags in
ee161e8f
PH
314Local/Makefile:
315
316EXPERIMENTAL_SPF=yes
317CFLAGS=-DSPF -I/usr/local/include
318EXTRALIBS_EXIM=-L/usr/local/lib -lspf2
319
320This assumes that the libspf2 files are installed in
321their default locations.
322
323You can now run SPF checks in incoming SMTP by using the "spf"
324ACL condition in either the MAIL, RCPT or DATA ACLs. When
325using it in the RCPT ACL, you can make the checks dependend on
326the RCPT address (or domain), so you can check SPF records
327only for certain target domains. This gives you the
328possibility to opt-out certain customers that do not want
329their mail to be subject to SPF checking.
330
331The spf condition takes a list of strings on its right-hand
332side. These strings describe the outcome of the SPF check for
333which the spf condition should succeed. Valid strings are:
334
335 o pass The SPF check passed, the sending host
336 is positively verified by SPF.
337 o fail The SPF check failed, the sending host
338 is NOT allowed to send mail for the domain
339 in the envelope-from address.
340 o softfail The SPF check failed, but the queried
341 domain can't absolutely confirm that this
342 is a forgery.
343 o none The queried domain does not publish SPF
344 records.
345 o neutral The SPF check returned a "neutral" state.
346 This means the queried domain has published
347 a SPF record, but wants to allow outside
348 servers to send mail under its domain as well.
349 o err_perm This indicates a syntax error in the SPF
350 record of the queried domain. This should be
351 treated like "none".
352 o err_temp This indicates a temporary error during all
3ec3e3bb 353 processing, including Exim's SPF processing.
ee161e8f 354 You may defer messages when this occurs.
8ff3788c 355
ee161e8f
PH
356You can prefix each string with an exclamation mark to invert
357is meaning, for example "!fail" will match all results but
358"fail". The string list is evaluated left-to-right, in a
359short-circuit fashion. When a string matches the outcome of
360the SPF check, the condition succeeds. If none of the listed
361strings matches the outcome of the SPF check, the condition
362fails.
363
f413481d
TK
364Here is an example to fail forgery attempts from domains that
365publish SPF records:
ee161e8f
PH
366
367/* -----------------
f413481d
TK
368deny message = $sender_host_address is not allowed to send mail from ${if def:sender_address_domain {$sender_address_domain}{$sender_helo_name}}. \
369 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
ee161e8f
PH
370 spf = fail
371--------------------- */
372
373You can also give special treatment to specific domains:
374
375/* -----------------
376deny message = AOL sender, but not from AOL-approved relay.
377 sender_domains = aol.com
378 spf = fail:neutral
379--------------------- */
380
381Explanation: AOL publishes SPF records, but is liberal and
382still allows non-approved relays to send mail from aol.com.
383This will result in a "neutral" state, while mail from genuine
384AOL servers will result in "pass". The example above takes
385this into account and treats "neutral" like "fail", but only
386for aol.com. Please note that this violates the SPF draft.
387
388When the spf condition has run, it sets up several expansion
389variables.
390
391 $spf_header_comment
392 This contains a human-readable string describing the outcome
393 of the SPF check. You can add it to a custom header or use
394 it for logging purposes.
8ff3788c 395
ee161e8f 396 $spf_received
8fe685ad 397 This contains a complete Received-SPF: header that can be
ee161e8f
PH
398 added to the message. Please note that according to the SPF
399 draft, this header must be added at the top of the header
400 list. Please see section 10 on how you can do this.
8ff3788c 401
65a7d8c3
NM
402 Note: in case of "Best-guess" (see below), the convention is
403 to put this string in a header called X-SPF-Guess: instead.
404
ee161e8f
PH
405 $spf_result
406 This contains the outcome of the SPF check in string form,
407 one of pass, fail, softfail, none, neutral, err_perm or
408 err_temp.
8ff3788c 409
ee161e8f
PH
410 $spf_smtp_comment
411 This contains a string that can be used in a SMTP response
412 to the calling party. Useful for "fail".
8ff3788c 413
65a7d8c3
NM
414In addition to SPF, you can also perform checks for so-called
415"Best-guess". Strictly speaking, "Best-guess" is not standard
416SPF, but it is supported by the same framework that enables SPF
417capability. Refer to http://www.openspf.org/FAQ/Best_guess_record
418for a description of what it means.
419
420To access this feature, simply use the spf_guess condition in place
421of the spf one. For example:
422
423/* -----------------
424deny message = $sender_host_address doesn't look trustworthy to me
425 spf_guess = fail
426--------------------- */
427
428In case you decide to reject messages based on this check, you
429should note that although it uses the same framework, "Best-guess"
430is NOT SPF, and therefore you should not mention SPF at all in your
431reject message.
432
433When the spf_guess condition has run, it sets up the same expansion
434variables as when spf condition is run, described above.
435
436Additionally, since Best-guess is not standarized, you may redefine
437what "Best-guess" means to you by redefining spf_guess variable in
438global config. For example, the following:
439
440/* -----------------
441spf_guess = v=spf1 a/16 mx/16 ptr ?all
442--------------------- */
443
444would relax host matching rules to a broader network range.
8ff3788c 445
ee161e8f 446
0b23848a 447SRS (Sender Rewriting Scheme) Support
ee161e8f
PH
448--------------------------------------------------------------
449
450Exiscan currently includes SRS support via Miles Wilton's
8ff3788c 451libsrs_alt library. The current version of the supported
ee161e8f
PH
452library is 0.5.
453
454In order to use SRS, you must get a copy of libsrs_alt from
455
456http://srs.mirtol.com/
457
458Unpack the tarball, then refer to MTAs/README.EXIM
459to proceed. You need to set
460
461EXPERIMENTAL_SRS=yes
462
463in your Local/Makefile.
464
465
466--------------------------------------------------------------
467End of file
468--------------------------------------------------------------