Fixed source for old versions of documentation
[exim-website.git] / docbook / 4.65 / filter.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
3 <book>
4 <bookinfo>
5 <title>Exim's interfaces to mail filtering</title>
6 <titleabbrev>Exim filtering</titleabbrev>
7 <date>31 July</date>
8 <author><firstname>Philip</firstname><surname>Hazel</surname></author>
9 <authorinitials>PH</authorinitials>
10 <revhistory><revision>
11   <revnumber>4.65</revnumber>
12   <date>31 July 2006</date>
13   <authorinitials>PH</authorinitials>
14 </revision></revhistory>
15 <copyright><year>2006</year><holder>University of Cambridge</holder></copyright>
16 </bookinfo>
17 <chapter>
18 <title>Forwarding and filtering in Exim</title>
19 <para>
20 This document describes the user interfaces to Exim&#x2019;s in-built mail filtering
21 facilities, and is copyright &copy; University of Cambridge 2006. It
22 corresponds to Exim version 4.63.
23 </para>
24 <section>
25 <title>Introduction</title>
26 <para>
27 Most Unix mail transfer agents (programs that deliver mail) permit individual
28 users to specify automatic forwarding of their mail, usually by placing a list
29 of forwarding addresses in a file called <filename>.forward</filename> in their home
30 directories. Exim extends this facility by allowing the forwarding instructions
31 to be a set of rules rather than just a list of addresses, in effect providing
32 <quote><filename>.forward</filename> with conditions</quote>. Operating the set of rules is called
33 <emphasis>filtering</emphasis>, and the file that contains them is called a <emphasis>filter file</emphasis>.
34 </para>
35 <para>
36 Exim supports two different kinds of filter file. An <emphasis>Exim filter</emphasis> contains
37 instructions in a format that is unique to Exim. A <emphasis>Sieve filter</emphasis> contains
38 instructions in the Sieve format that is defined by RFC 3028. As this is a
39 standard format, Sieve filter files may already be familiar to some users.
40 Sieve files should also be portable between different environments. However,
41 the Exim filtering facility contains more features (such as variable
42 expansion), and better integration with the host environment (such as the use
43 of external processes and pipes).
44 </para>
45 <para>
46 The choice of which kind of filter to use can be left to the end-user, provided
47 that the system administrator has configured Exim appropriately for both kinds
48 of filter. However, if interoperability is important, Sieve is the only
49 choice.
50 </para>
51 <para>
52 The ability to use filtering or traditional forwarding has to be enabled by the
53 system administrator, and some of the individual facilities can be separately
54 enabled or disabled. A local document should be provided to describe exactly
55 what has been enabled. In the absence of this, consult your system
56 administrator.
57 </para>
58 <para>
59 This document describes how to use a filter file and the format of its
60 contents. It is intended for use by end-users. Both Sieve filters and Exim
61 filters are covered. However, for Sieve filters, only issues that relate to the
62 Exim implementation are discussed, since Sieve itself is described elsewhere.
63 </para>
64 <para>
65 The contents of traditional <filename>.forward</filename> files are not described here. They
66 normally contain just a list of addresses, file names, or pipe commands,
67 separated by commas or newlines, but other types of item are also available.
68 The full details can be found in the chapter on the <command>redirect</command> router in the
69 Exim specification, which also describes how the system administrator can set
70 up and control the use of filtering.
71 </para>
72 </section>
73 <section>
74 <title>Filter operation</title>
75 <para>
76 It is important to realize that, in Exim, no deliveries are actually made while
77 a filter or traditional <filename>.forward</filename> file is being processed. Running a filter
78 or processing a traditional <filename>.forward</filename> file sets up future delivery
79 operations, but does not carry them out.
80 </para>
81 <para>
82 The result of filter or <filename>.forward</filename> file processing is a list of destinations
83 to which a message should be delivered. The deliveries themselves take place
84 later, along with all other deliveries for the message. This means that it is
85 not possible to test for successful deliveries while filtering. It also means
86 that any duplicate addresses that are generated are dropped, because Exim never
87 delivers the same message to the same address more than once.
88 </para>
89 </section>
90 <section id="SECTtesting">
91 <title>Testing a new filter file</title>
92 <para>
93 Filter files, especially the more complicated ones, should always be tested, as
94 it is easy to make mistakes. Exim provides a facility for preliminary testing
95 of a filter file before installing it. This tests the syntax of the file and
96 its basic operation, and can also be used with traditional <filename>.forward</filename> files.
97 </para>
98 <para>
99 Because a filter can do tests on the content of messages, a test message is
100 required. Suppose you have a new filter file called <filename>myfilter</filename> and a test
101 message in a file called <filename>test-message</filename>. Assuming that Exim is installed with
102 the conventional path name <filename>/usr/sbin/sendmail</filename> (some operating systems use
103 <filename>/usr/lib/sendmail</filename>), the following command can be used:
104 </para>
105 <literallayout class="monospaced">
106 /usr/sbin/sendmail -bf myfilter &lt;test-message
107 </literallayout>
108 <para>
109 The <option>-bf</option> option tells Exim that the following item on the command line is
110 the name of a filter file that is to be tested. There is also a <option>-bF</option> option,
111 which is similar, but which is used for testing system filter files, as opposed
112 to user filter files, and which is therefore of use only to the system
113 administrator.
114 </para>
115 <para>
116 The test message is supplied on the standard input. If there are no
117 message-dependent tests in the filter, an empty file (<filename>/dev/null</filename>) can be
118 used. A supplied message must start with header lines or the <quote>From&nbsp;</quote> message
119 separator line that is found in many multi-message folder files. Note that
120 blank lines at the start terminate the header lines. A warning is given if no
121 header lines are read.
122 </para>
123 <para>
124 The result of running this command, provided no errors are detected in the
125 filter file, is a list of the actions that Exim would try to take if presented
126 with the message for real. For example, for an Exim filter, the output
127 </para>
128 <literallayout class="monospaced">
129 Deliver message to: gulliver@lilliput.fict.example
130 Save message to: /home/lemuel/mail/archive
131 </literallayout>
132 <para>
133 means that one copy of the message would be sent to
134 <emphasis>gulliver@lilliput.fict.example</emphasis>, and another would be added to the file
135 <filename>/home/lemuel/mail/archive</filename>, if all went well.
136 </para>
137 <para>
138 The actions themselves are not attempted while testing a filter file in this
139 way; there is no check, for example, that any forwarding addresses are valid.
140 For an Exim filter, if you want to know why a particular action is being taken,
141 add the <option>-v</option> option to the command. This causes Exim to output the results of
142 any conditional tests and to indent its output according to the depth of
143 nesting of <command>if</command> commands. Further additional output from a filter test can be
144 generated by the <command>testprint</command> command, which is described below.
145 </para>
146 <para>
147 When Exim is outputting a list of the actions it would take, if any text
148 strings are included in the output, non-printing characters therein are
149 converted to escape sequences. In particular, if any text string contains a
150 newline character, this is shown as <quote>\n</quote> in the testing output.
151 </para>
152 <para>
153 When testing a filter in this way, Exim makes up an <quote>envelope</quote> for the
154 message. The recipient is by default the user running the command, and so is
155 the sender, but the command can be run with the <option>-f</option> option to supply a
156 different sender. For example,
157 </para>
158 <literallayout class="monospaced">
159 /usr/sbin/sendmail -bf myfilter \
160    -f islington@never.where &lt;test-message
161 </literallayout>
162 <para>
163 Alternatively, if the <option>-f</option> option is not used, but the first line of the
164 supplied message is a <quote>From&nbsp;</quote> separator from a message folder file (not the
165 same thing as a <emphasis>From:</emphasis> header line), the sender is taken from there. If
166 <option>-f</option> is present, the contents of any <quote>From&nbsp;</quote> line are ignored.
167 </para>
168 <para>
169 The <quote>return path</quote> is the same as the envelope sender, unless the message
170 contains a <emphasis>Return-path:</emphasis> header, in which case it is taken from there. You
171 need not worry about any of this unless you want to test out features of a
172 filter file that rely on the sender address or the return path.
173 </para>
174 <para>
175 It is possible to change the envelope recipient by specifying further options.
176 The <option>-bfd</option> option changes the domain of the recipient address, while the
177 <option>-bfl</option> option changes the <quote>local part</quote>, that is, the part before the @
178 sign. An adviser could make use of these to test someone else&#x2019;s filter file.
179 </para>
180 <para>
181 The <option>-bfp</option> and <option>-bfs</option> options specify the prefix or suffix for the local
182 part. These are relevant only when support for multiple personal mailboxes is
183 implemented; see the description in section <xref linkend="SECTmbox"/> below.
184 </para>
185 </section>
186 <section>
187 <title>Installing a filter file</title>
188 <para>
189 A filter file is normally installed under the name <filename>.forward</filename> in your home
190 directory &ndash; it is distinguished from a conventional <filename>.forward</filename> file by its
191 first line (described below). However, the file name is configurable, and some
192 system administrators may choose to use some different name or location for
193 filter files.
194 </para>
195 </section>
196 <section>
197 <title>Testing an installed filter file</title>
198 <para>
199 Testing a filter file before installation cannot find every potential problem;
200 for example, it does not actually run commands to which messages are piped.
201 Some <quote>live</quote> tests should therefore also be done once a filter is installed.
202 </para>
203 <para>
204 If at all possible, test your filter file by sending messages from some other
205 account. If you send a message to yourself from the filtered account, and
206 delivery fails, the error message will be sent back to the same account, which
207 may cause another delivery failure. It won&#x2019;t cause an infinite sequence of such
208 messages, because delivery failure messages do not themselves generate further
209 messages. However, it does mean that the failure won&#x2019;t be returned to you, and
210 also that the postmaster will have to investigate the stuck message.
211 </para>
212 <para>
213 If you have to test an Exim filter from the same account, a sensible precaution
214 is to include the line
215 </para>
216 <literallayout class="monospaced">
217 if error_message then finish endif
218 </literallayout>
219 <para>
220 as the first filter command, at least while testing. This causes filtering to
221 be abandoned for a delivery failure message, and since no destinations are
222 generated, the message goes on to be delivered to the original address. Unless
223 there is a good reason for not doing so, it is recommended that the above test
224 be left in all Exim filter files. (This does not apply to Sieve files.)
225 </para>
226 </section>
227 <section>
228 <title>Details of filtering commands</title>
229 <para>
230 The filtering commands for Sieve and Exim filters are completely different in
231 syntax and semantics. The Sieve mechanism is defined in RFC 3028; in the next
232 chapter we describe how it is integrated into Exim. The subsequent chapter
233 covers Exim filtering commands in detail.
234 </para>
235 </section>
236 </chapter>
237
238 <chapter id="CHAPsievefilter">
239 <title>Sieve filter files</title>
240 <para>
241 The code for Sieve filtering in Exim was contributed by Michael Haardt, and
242 most of the content of this chapter is taken from the notes he provided. Since
243 Sieve is an extensible language, it is important to understand <quote>Sieve</quote> in
244 this context as <quote>the specific implementation of Sieve for Exim</quote>.
245 </para>
246 <para>
247 This chapter does not contain a description of Sieve, since that can be found
248 in RFC 3028, which should be read in conjunction with these notes.
249 </para>
250 <para>
251 The Exim Sieve implementation offers the core as defined by RFC 3028,
252 comparison tests, the <emphasis role="bold">copy</emphasis>, <emphasis role="bold">envelope</emphasis>, <emphasis role="bold">fileinto</emphasis>, and <emphasis role="bold">vacation</emphasis>
253 extensions, but not the <emphasis role="bold">reject</emphasis> extension. Exim does not support message
254 delivery notifications (MDNs), so adding it just to the Sieve filter (as
255 required for <emphasis role="bold">reject</emphasis>) makes little sense.
256 </para>
257 <para>
258 In order for Sieve to work properly in Exim, the system administrator needs to
259 make some adjustments to the Exim configuration. These are described in the
260 chapter on the <command>redirect</command> router in the full Exim specification.
261 </para>
262 <section>
263 <title>Recognition of Sieve filters</title>
264 <para>
265 A filter file is interpreted as a Sieve filter if its first line is
266 </para>
267 <literallayout class="monospaced">
268 # Sieve filter
269 </literallayout>
270 <para>
271 This is what distinguishes it from a conventional <filename>.forward</filename> file or an Exim
272 filter file.
273 </para>
274 </section>
275 <section>
276 <title>Saving to specified folders</title>
277 <para>
278 If the system administrator has set things up as suggested in the Exim
279 specification, and you use <command>keep</command> or <command>fileinto</command> to save a mail into a
280 folder, absolute files are stored where specified, relative files are stored
281 relative to <varname>$home</varname>, and <filename>inbox</filename> goes to the standard mailbox location.
282 </para>
283 </section>
284 <section>
285 <title>Strings containing header names</title>
286 <para>
287 RFC 3028 does not specify what happens if a string denoting a header field does
288 not contain a valid header name, for example, it contains a colon. This
289 implementation generates an error instead of ignoring the header field in order
290 to ease script debugging, which fits in with the common picture of Sieve.
291 </para>
292 </section>
293 <section>
294 <title>Exists test with empty list of headers</title>
295 <para>
296 The <emphasis role="bold">exists</emphasis> test succeeds only if all the specified headers exist. RFC 3028
297 does not explicitly specify what happens on an empty list of headers. This
298 implementation evaluates that condition as true, interpreting the RFC in a
299 strict sense.
300 </para>
301 </section>
302 <section>
303 <title>Header test with invalid MIME encoding in header</title>
304 <para>
305 Some MUAs process invalid base64 encoded data, generating junk. Others ignore
306 junk after seeing an equal sign in base64 encoded data. RFC 2047 does not
307 specify how to react in this case, other than stating that a client must not
308 forbid to process a message for that reason. RFC 2045 specifies that invalid
309 data should be ignored (apparently looking at end of line characters). It also
310 specifies that invalid data may lead to rejecting messages containing them (and
311 there it appears to talk about true encoding violations), which is a clear
312 contradiction to ignoring them.
313 </para>
314 <para>
315 RFC 3028 does not specify how to process incorrect MIME words. This
316 implementation treats them literally, as it does if the word is correct but its
317 character set cannot be converted to UTF-8.
318 </para>
319 </section>
320 <section>
321 <title>Address test for multiple addresses per header</title>
322 <para>
323 A header may contain multiple addresses. RFC 3028 does not explicitly specify
324 how to deal with them, but since the address test checks if anything matches
325 anything else, matching one address suffices to satisfy the condition. That
326 makes it impossible to test if a header contains a certain set of addresses and
327 no more, but it is more logical than letting the test fail if the header
328 contains an additional address besides the one the test checks for.
329 </para>
330 </section>
331 <section>
332 <title>Semantics of keep</title>
333 <para>
334 The <command>keep</command> command is equivalent to
335 </para>
336 <literallayout class="monospaced">
337 fileinto "inbox";
338 </literallayout>
339 <para>
340 It saves the message and resets the implicit keep flag. It does not set the
341 implicit keep flag; there is no command to set it once it has been reset.
342 </para>
343 </section>
344 <section>
345 <title>Semantics of fileinto</title>
346 <para>
347 RFC 3028 does not specify whether <command>fileinto</command> should try to create a mail
348 folder if it does not exist. This implementation allows the sysadmin to
349 configure that aspect using the <command>appendfile</command> transport options
350 <option>create_directory</option>, <option>create_file</option>, and <option>file_must_exist</option>. See the
351 <command>appendfile</command> transport in the Exim specification for details.
352 </para>
353 </section>
354 <section>
355 <title>Semantics of redirect</title>
356 <para>
357 Sieve scripts are supposed to be interoperable between servers, so this
358 implementation does not allow mail to be redirected to unqualified addresses,
359 because the domain would depend on the system being used. On systems with
360 virtual mail domains, the default domain is probably not what the user expects
361 it to be.
362 </para>
363 </section>
364 <section>
365 <title>String arguments</title>
366 <para>
367 There has been confusion if the string arguments to <command>require</command> are to be
368 matched case-sensitively or not. This implementation matches them with the
369 match type <command>:is</command> (default, see section 2.7.1 of the RFC) and the comparator
370 <command>i;ascii-casemap</command> (default, see section 2.7.3 of the RFC). The RFC defines
371 the command defaults clearly, so any different implementations violate RFC
372 3028. The same is valid for comparator names, also specified as strings.
373 </para>
374 </section>
375 <section>
376 <title>Number units</title>
377 <para>
378 There is a mistake in RFC 3028: the suffix G denotes gibi-, not tebibyte.
379 The mistake is obvious, because RFC 3028 specifies G to denote 2^30
380 (which is gibi, not tebi), and that is what this implementation uses as
381 the scaling factor for the suffix G.
382 </para>
383 </section>
384 <section>
385 <title>RFC compliance</title>
386 <para>
387 Exim requires the first line of a Sieve filter to be
388 </para>
389 <literallayout class="monospaced">
390 # Sieve filter
391 </literallayout>
392 <para>
393 Of course the RFC does not specify that line. Do not expect examples to work
394 without adding it, though.
395 </para>
396 <para>
397 RFC 3028 requires the use of CRLF to terminate a line. The rationale was that
398 CRLF is universally used in network protocols to mark the end of the line. This
399 implementation does not embed Sieve in a network protocol, but uses Sieve
400 scripts as part of the Exim MTA. Since all parts of Exim use LF as the newline
401 character, this implementation does, too, by default, though the system
402 administrator may choose (at Exim compile time) to use CRLF instead.
403 </para>
404 <para>
405 Exim violates RFC 2822, section 3.6.8, by accepting 8-bit header names, so this
406 implementation repeats this violation to stay consistent with Exim. This is in
407 preparation for UTF-8 data.
408 </para>
409 <para>
410 Sieve scripts cannot contain NUL characters in strings, but mail headers could
411 contain MIME encoded NUL characters, which could never be matched by Sieve
412 scripts using exact comparisons. For that reason, this implementation extends
413 the Sieve quoted string syntax with \0 to describe a NUL character, violating
414 \0 being the same as 0 in RFC 3028. Even without using \0, the following tests
415 are all true in this implementation. Implementations that use C-style strings
416 will only evaluate the first test as true.
417 </para>
418 <literallayout class="monospaced">
419 Subject: =?iso-8859-1?q?abc=00def
420
421 header :contains "Subject" ["abc"]
422 header :contains "Subject" ["def"]
423 header :matches "Subject" ["abc?def"]
424 </literallayout>
425 <para>
426 Note that by considering Sieve to be an MUA, RFC 2047 can be interpreted in a
427 way that NUL characters truncating strings is allowed for Sieve
428 implementations, although not recommended. It is further allowed to use encoded
429 NUL characters in headers, but that&#x2019;s not recommended either. The above example
430 shows why.
431 </para>
432 <para>
433 RFC 3028 states that if an implementation fails to convert a character set to
434 UTF-8, two strings cannot be equal if one contains octets greater than 127.
435 Assuming that all unknown character sets are one-byte character sets with the
436 lower 128 octets being US-ASCII is not sound, so this implementation violates
437 RFC 3028 and treats such MIME words literally. That way at least something
438 could be matched.
439 </para>
440 <para>
441 The folder specified by <command>fileinto</command> must not contain the character sequence
442 <quote>..</quote> to avoid security problems. RFC 3028 does not specify the syntax of
443 folders apart from <command>keep</command> being equivalent to
444 </para>
445 <literallayout class="monospaced">
446 fileinto "INBOX";
447 </literallayout>
448 <para>
449 This implementation uses <filename>inbox</filename> instead.
450 </para>
451 <para>
452 Sieve script errors currently cause messages to be silently filed into
453 <filename>inbox</filename>.  RFC 3028 requires that the user is notified of that condition.
454 This may be implemented in the future by adding a header line to mails that
455 are filed into <filename>inbox</filename> due to an error in the filter.
456 </para>
457 </section>
458 </chapter>
459
460 <chapter id="CHAPeximfilter">
461 <title>Exim filter files</title>
462 <para>
463 This chapter contains a full description of the contents of Exim filter files.
464 </para>
465 <section>
466 <title>Format of Exim filter files</title>
467 <para>
468 Apart from leading white space, the first text in an Exim filter file must be
469 </para>
470 <literallayout class="monospaced">
471 # Exim filter
472 </literallayout>
473 <para>
474 This is what distinguishes it from a conventional <filename>.forward</filename> file or a Sieve
475 filter file. If the file does not have this initial line (or the equivalent for
476 a Sieve filter), it is treated as a conventional <filename>.forward</filename> file, both when
477 delivering mail and when using the <option>-bf</option> testing mechanism. The white space
478 in the line is optional, and any capitalization may be used. Further text on
479 the same line is treated as a comment. For example, you could have
480 </para>
481 <literallayout class="monospaced">
482 #   Exim filter   &lt;&lt;== do not edit or remove this line!
483 </literallayout>
484 <para>
485 The remainder of the file is a sequence of filtering commands, which consist of
486 keywords and data values. For example, in the command
487 </para>
488 <literallayout class="monospaced">
489 deliver gulliver@lilliput.fict.example
490 </literallayout>
491 <para>
492 the keyword is <literal>deliver</literal> and the data value is
493 <literal>gulliver@lilliput.fict.example</literal>. White space or line breaks separate the
494 components of a command, except in the case of conditions for the <command>if</command>
495 command, where round brackets (parentheses) also act as separators. Complete
496 commands are separated from each other by white space or line breaks; there are
497 no special terminators. Thus, several commands may appear on one line, or one
498 command may be spread over a number of lines.
499 </para>
500 <para>
501 If the character # follows a separator anywhere in a command, everything from
502 # up to the next newline is ignored. This provides a way of including comments
503 in a filter file.
504 </para>
505 </section>
506 <section>
507 <title>Data values in filter commands</title>
508 <para>
509 There are two ways in which a data value can be input:
510 </para>
511 <itemizedlist>
512 <listitem>
513 <para>
514 If the text contains no white space, it can be typed verbatim. However, if it
515 is part of a condition, it must also be free of round brackets (parentheses),
516 as these are used for grouping in conditions.
517 </para>
518 </listitem>
519 <listitem>
520 <para>
521 Otherwise, text must be enclosed in double quotation marks. In this case, the
522 character \ (backslash) is treated as an <quote>escape character</quote> within the
523 string, causing the following character or characters to be treated specially:
524 </para>
525 <literallayout>
526 <literal>\n</literal>   is replaced by a newline
527 <literal>\r</literal>   is replaced by a carriage return
528 <literal>\t</literal>   is replaced by a tab
529 </literallayout>
530 </listitem>
531 </itemizedlist>
532 <para>
533 Backslash followed by up to three octal digits is replaced by the character
534 specified by those digits, and <literal>\x</literal> followed by up to two hexadecimal digits
535 is treated similarly. Backslash followed by any other character is replaced by
536 the second character, so that in particular, <literal>\"</literal> becomes <literal>"</literal> and <literal>\\</literal>
537 becomes <literal>\</literal>. A data item enclosed in double quotes can be continued onto the
538 next line by ending the first line with a backslash. Any leading white space at
539 the start of the continuation line is ignored.
540 </para>
541 <para>
542 In addition to the escape character processing that occurs when strings are
543 enclosed in quotes, most data values are also subject to <emphasis>string expansion</emphasis>
544 (as described in the next section), in which case the characters <literal>$</literal> and
545 <literal>\</literal> are also significant. This means that if a single backslash is actually
546 required in such a string, and the string is also quoted, <literal>\\\\</literal> has to be
547 entered.
548 </para>
549 <para>
550 The maximum permitted length of a data string, before expansion, is 1024
551 characters.
552 </para>
553 </section>
554 <section id="SECTfilterstringexpansion">
555 <title>String expansion</title>
556 <para>
557 Most data values are expanded before use. Expansion consists of replacing
558 substrings beginning with <literal>$</literal> with other text. The full expansion facilities
559 available in Exim are extensive. If you want to know everything that Exim can
560 do with strings, you should consult the chapter on string expansion in the Exim
561 documentation.
562 </para>
563 <para>
564 In filter files, by far the most common use of string expansion is the
565 substitution of the contents of a variable. For example, the substring
566 </para>
567 <literallayout class="monospaced">
568 $reply_address
569 </literallayout>
570 <para>
571 is replaced by the address to which replies to the message should be sent. If
572 such a variable name is followed by a letter or digit or underscore, it must be
573 enclosed in curly brackets (braces), for example,
574 </para>
575 <literallayout class="monospaced">
576 ${reply_address}
577 </literallayout>
578 <para>
579 If a <literal>$</literal> character is actually required in an expanded string, it must be
580 escaped with a backslash, and because backslash is also an escape character in
581 quoted input strings, it must be doubled in that case. The following two
582 examples illustrate two different ways of testing for a <literal>$</literal> character in a
583 message:
584 </para>
585 <literallayout class="monospaced">
586 if $message_body contains \$ then ...
587 if $message_body contains "\\$" then ...
588 </literallayout>
589 <para>
590 You can prevent part of a string from being expanded by enclosing it between
591 two occurrences of <literal>\N</literal>. For example,
592 </para>
593 <literallayout class="monospaced">
594 if $message_body contains \N$$$$\N then ...
595 </literallayout>
596 <para>
597 tests for a run of four dollar characters.
598 </para>
599 </section>
600 <section>
601 <title>Some useful general variables</title>
602 <para>
603 A complete list of the available variables is given in the Exim documentation.
604 This shortened list contains the ones that are most likely to be useful in
605 personal filter files:
606 </para>
607 <para>
608 <varname>$body_linecount</varname>: The number of lines in the body of the message.
609 </para>
610 <para>
611 <varname>$body_zerocount</varname>: The number of binary zero characters in the body of the
612 message.
613 </para>
614 <para>
615 <varname>$home</varname>: In conventional configurations, this variable normally contains the
616 user&#x2019;s home directory. The system administrator can, however, change this.
617 </para>
618 <para>
619 <varname>$local_part</varname>: The part of the email address that precedes the @ sign &ndash;
620 normally the user&#x2019;s login name. If support for multiple personal mailboxes is
621 enabled (see section <xref linkend="SECTmbox"/> below) and a prefix or suffix for the local
622 part was recognized, it is removed from the string in this variable.
623 </para>
624 <para>
625 <varname>$local_part_prefix</varname>: If support for multiple personal mailboxes is enabled
626 (see section <xref linkend="SECTmbox"/> below), and a local part prefix was recognized,
627 this variable contains the prefix. Otherwise it contains an empty string.
628 </para>
629 <para>
630 <varname>$local_part_suffix</varname>: If support for multiple personal mailboxes is enabled
631 (see section <xref linkend="SECTmbox"/> below), and a local part suffix was recognized,
632 this variable contains the suffix. Otherwise it contains an empty string.
633 </para>
634 <para>
635 <varname>$message_body</varname>: The initial portion of the body of the message. By default,
636 up to 500 characters are read into this variable, but the system administrator
637 can configure this to some other value. Newlines in the body are converted into
638 single spaces.
639 </para>
640 <para>
641 <varname>$message_body_end</varname>: The final portion of the body of the message, formatted
642 and limited in the same way as <varname>$message_body</varname>.
643 </para>
644 <para>
645 <varname>$message_body_size</varname>: The size of the body of the message, in bytes.
646 </para>
647 <para>
648 <varname>$message_exim_id</varname>: The message&#x2019;s local identification string, which is unique
649 for each message handled by a single host.
650 </para>
651 <para>
652 <varname>$message_headers</varname>: The header lines of the message, concatenated into a
653 single string, with newline characters between them.
654 </para>
655 <para>
656 <varname>$message_size</varname>: The size of the entire message, in bytes.
657 </para>
658 <para>
659 <varname>$original_local_part</varname>: When an address that arrived with the message is
660 being processed, this contains the same value as the variable <varname>$local_part</varname>.
661 However, if an address generated by an alias, forward, or filter file is being
662 processed, this variable contains the local part of the original address.
663 </para>
664 <para>
665 <varname>$reply_address</varname>: The contents of the <emphasis>Reply-to:</emphasis> header, if the message
666 has one; otherwise the contents of the <emphasis>From:</emphasis> header. It is the address to
667 which normal replies to the message should be sent.
668 </para>
669 <para>
670 <varname>$return_path</varname>: The return path &ndash; that is, the sender field that will be
671 transmitted as part of the message&#x2019;s envelope if the message is sent to another
672 host. This is the address to which delivery errors are sent. In many cases,
673 this variable has the same value as <varname>$sender_address</varname>, but if, for example,
674 an incoming message to a mailing list has been expanded, <varname>$return_path</varname> may
675 have been changed to contain the address of the list maintainer.
676 </para>
677 <para>
678 <varname>$sender_address</varname>: The sender address that was received in the envelope of
679 the message. This is not necessarily the same as the contents of the <emphasis>From:</emphasis>
680 or <emphasis>Sender:</emphasis> header lines. For delivery error messages (<quote>bounce messages</quote>)
681 there is no sender address, and this variable is empty.
682 </para>
683 <para>
684 <varname>$tod_full</varname>: A full version of the time and date, for example: Wed, 18 Oct
685 1995 09:51:40 +0100. The timezone is always given as a numerical offset from
686 GMT.
687 </para>
688 <para>
689 <varname>$tod_log</varname>: The time and date in the format used for writing Exim&#x2019;s log files,
690 without the timezone, for example: 1995-10-12 15:32:29.
691 </para>
692 <para>
693 <varname>$tod_zone</varname>: The local timezone offset, for example: +0100.
694 </para>
695 </section>
696 <section id="SECTheadervariables">
697 <title>Header variables</title>
698 <para>
699 There is a special set of expansion variables containing the header lines of
700 the message being processed. These variables have names beginning with
701 <varname>$header_</varname> followed by the name of the header line, terminated by a colon.
702 For example,
703 </para>
704 <literallayout class="monospaced">
705 $header_from:
706 $header_subject:
707 </literallayout>
708 <para>
709 The whole item, including the terminating colon, is replaced by the contents of
710 the message header line. If there is more than one header line with the same
711 name, their contents are concatenated. For header lines whose data consists of
712 a list of addresses (for example, <emphasis>From:</emphasis> and <emphasis>To:</emphasis>), a comma and newline
713 is inserted between each set of data. For all other header lines, just a
714 newline is used.
715 </para>
716 <para>
717 Leading and trailing white space is removed from header line data, and if there
718 are any MIME <quote>words</quote> that are encoded as defined by RFC 2047 (because they
719 contain non-ASCII characters), they are decoded and translated, if possible, to
720 a local character set. Translation is attempted only on operating systems that
721 have the <function>iconv()</function> function. This makes the header line look the same as it
722 would when displayed by an MUA. The default character set is ISO-8859-1, but
723 this can be changed by means of the <command>headers</command> command (see below).
724 </para>
725 <para>
726 If you want to see the actual characters that make up a header line, you can
727 specify <varname>$rheader_</varname> instead of <varname>$header_</varname>. This inserts the <quote>raw</quote>
728 header line, unmodified.
729 </para>
730 <para>
731 There is also an intermediate form, requested by <varname>$bheader_</varname>, which removes
732 leading and trailing space and decodes MIME <quote>words</quote>, but does not do any
733 character translation. If an attempt to decode what looks superficially like a
734 MIME <quote>word</quote> fails, the raw string is returned. If decoding produces a binary
735 zero character, it is replaced by a question mark.
736 </para>
737 <para>
738 The capitalization of the name following <varname>$header_</varname> is not significant.
739 Because any printing character except colon may appear in the name of a
740 message&#x2019;s header (this is a requirement of RFC 2822, the document that
741 describes the format of a mail message) curly brackets must <emphasis>not</emphasis> be used in
742 this case, as they will be taken as part of the header name. Two shortcuts are
743 allowed in naming header variables:
744 </para>
745 <itemizedlist>
746 <listitem>
747 <para>
748 The initiating <varname>$header_</varname>, <varname>$rheader_</varname>, or <varname>$bheader_</varname> can be
749 abbreviated to <varname>$h_</varname>, <varname>$rh_</varname>, or <varname>$bh_</varname>, respectively.
750 </para>
751 </listitem>
752 <listitem>
753 <para>
754 The terminating colon can be omitted if the next character is white space. The
755 white space character is retained in the expanded string. However, this is not
756 recommended, because it makes it easy to forget the colon when it really is
757 needed.
758 </para>
759 </listitem>
760 </itemizedlist>
761 <para>
762 If the message does not contain a header of the given name, an empty string is
763 substituted. Thus it is important to spell the names of headers correctly. Do
764 not use <varname>$header_Reply_to</varname> when you really mean <varname>$header_Reply-to</varname>.
765 </para>
766 </section>
767 <section>
768 <title>User variables</title>
769 <para>
770 There are ten user variables with names <varname>$n0</varname> &ndash; <varname>$n9</varname> that can be
771 incremented by the <command>add</command> command (see section <xref linkend="SECTadd"/>). These can be
772 used for <quote>scoring</quote> messages in various ways. If Exim is configured to run a
773 <quote>system filter</quote> on every message, the values left in these variables are
774 copied into the variables <varname>$sn0</varname> &ndash; <varname>$sn9</varname> at the end of the system filter,
775 thus making them available to users&#x2019; filter files. How these values are used is
776 entirely up to the individual installation.
777 </para>
778 </section>
779 <section>
780 <title>Current directory</title>
781 <para>
782 The contents of your filter file should not make any assumptions about the
783 current directory. It is best to use absolute paths for file names; you can
784 normally make use of the <varname>$home</varname> variable to refer to your home directory. The
785 <command>save</command> command automatically inserts <varname>$home</varname> at the start of non-absolute
786 paths.
787 </para>
788 </section>
789 <section id="SECTsigdel">
790 <title>Significant deliveries</title>
791 <para>
792 When in the course of delivery a message is processed by a filter file, what
793 happens next, that is, after the filter file has been processed, depends on
794 whether or not the filter sets up any <emphasis>significant deliveries</emphasis>. If at least
795 one significant delivery is set up, the filter is considered to have handled
796 the entire delivery arrangements for the current address, and no further
797 processing of the address takes place. If, however, no significant deliveries
798 are set up, Exim continues processing the current address as if there were no
799 filter file, and typically sets up a delivery of a copy of the message into a
800 local mailbox. In particular, this happens in the special case of a filter file
801 containing only comments.
802 </para>
803 <para>
804 The delivery commands <command>deliver</command>, <command>save</command>, and <command>pipe</command> are by default
805 significant. However, if such a command is preceded by the word <quote>unseen</quote>, its
806 delivery is not considered to be significant. In contrast, other commands such
807 as <command>mail</command> and <command>vacation</command> do not set up significant deliveries unless
808 preceded by the word <quote>seen</quote>. The following example commands set up
809 significant deliveries:
810 </para>
811 <literallayout class="monospaced">
812 deliver jack@beanstalk.example
813 pipe $home/bin/mymailscript
814 seen mail subject "message discarded"
815 seen finish
816 </literallayout>
817 <para>
818 The following example commands do not set up significant deliveries:
819 </para>
820 <literallayout class="monospaced">
821 unseen deliver jack@beanstalk.example
822 unseen pipe $home/bin/mymailscript
823 mail subject "message discarded"
824 finish
825 </literallayout>
826 </section>
827 <section>
828 <title>Filter commands</title>
829 <para>
830 The filter commands that are described in subsequent sections are listed
831 below, with the section in which they are described in brackets:
832 </para>
833 <informaltable frame="none">
834 <tgroup cols="2" colsep="0" rowsep="0">
835 <colspec colwidth="100pt" align="left"/>
836 <colspec colwidth="300pt" align="left"/>
837 <tbody>
838 <row>
839 <entry><command>add</command></entry>
840 <entry>&nbsp;&nbsp;increment a user variable (section <xref linkend="SECTadd"/>)</entry>
841 </row>
842 <row>
843 <entry><command>deliver</command></entry>
844 <entry>&nbsp;&nbsp;deliver to an email address (section <xref linkend="SECTdeliver"/>)</entry>
845 </row>
846 <row>
847 <entry><command>fail</command></entry>
848 <entry>&nbsp;&nbsp;force delivery failure (sysadmin use) (section <xref linkend="SECTfail"/>)</entry>
849 </row>
850 <row>
851 <entry><command>finish</command></entry>
852 <entry>&nbsp;&nbsp;end processing (section <xref linkend="SECTfinish"/>)</entry>
853 </row>
854 <row>
855 <entry><command>freeze</command></entry>
856 <entry>&nbsp;&nbsp;freeze message (sysadmin use) (section <xref linkend="SECTfreeze"/>)</entry>
857 </row>
858 <row>
859 <entry><command>headers</command></entry>
860 <entry>&nbsp;&nbsp;set the header character set (section <xref linkend="SECTheaders"/>)</entry>
861 </row>
862 <row>
863 <entry><command>if</command></entry>
864 <entry>&nbsp;&nbsp;test condition(s) (section <xref linkend="SECTif"/>)</entry>
865 </row>
866 <row>
867 <entry><command>logfile</command></entry>
868 <entry>&nbsp;&nbsp;define log file (section <xref linkend="SECTlog"/>)</entry>
869 </row>
870 <row>
871 <entry><command>logwrite</command></entry>
872 <entry>&nbsp;&nbsp;write to log file (section <xref linkend="SECTlog"/>)</entry>
873 </row>
874 <row>
875 <entry><command>mail</command></entry>
876 <entry>&nbsp;&nbsp;send a reply message (section <xref linkend="SECTmail"/>)</entry>
877 </row>
878 <row>
879 <entry><command>pipe</command></entry>
880 <entry>&nbsp;&nbsp;pipe to a command (section <xref linkend="SECTpipe"/>)</entry>
881 </row>
882 <row>
883 <entry><command>save</command></entry>
884 <entry>&nbsp;&nbsp;save to a file (section <xref linkend="SECTsave"/>)</entry>
885 </row>
886 <row>
887 <entry><command>testprint</command></entry>
888 <entry>&nbsp;&nbsp;print while testing (section <xref linkend="SECTtestprint"/>)</entry>
889 </row>
890 <row>
891 <entry><command>vacation</command></entry>
892 <entry>&nbsp;&nbsp;tailored form of <command>mail</command> (section <xref linkend="SECTmail"/>)</entry>
893 </row>
894 </tbody>
895 </tgroup>
896 </informaltable>
897 <para>
898 The <command>headers</command> command has additional parameters that can be used only in a
899 system filter. The <command>fail</command> and <command>freeze</command> commands are available only when
900 Exim&#x2019;s filtering facilities are being used as a system filter, and are
901 therefore usable only by the system administrator and not by ordinary users.
902 They are mentioned only briefly in this document; for more information, see the
903 main Exim specification.
904 </para>
905 </section>
906 <section id="SECTadd">
907 <title>The add command</title>
908 <literallayout>
909 <literal>     add </literal>&lt;<emphasis>number</emphasis>&gt;<literal> to </literal>&lt;<emphasis>user variable</emphasis>&gt;
910 <literal>e.g. add 2 to n3</literal>
911 </literallayout>
912 <para>
913 There are 10 user variables of this type, with names <varname>$n0</varname> &ndash; <varname>$n9</varname>. Their
914 values can be obtained by the normal expansion syntax (for example <varname>$n3</varname>) in
915 other commands. At the start of filtering, these variables all contain zero.
916 Both arguments of the <command>add</command> command are expanded before use, making it
917 possible to add variables to each other. Subtraction can be obtained by adding
918 negative numbers.
919 </para>
920 </section>
921 <section id="SECTdeliver">
922 <title>The deliver command</title>
923 <literallayout>
924 <literal>     deliver</literal> &lt;<emphasis>mail address</emphasis>&gt;
925 <literal>e.g. deliver "Dr Livingstone &lt;David@somewhere.africa.example&gt;"</literal>
926 </literallayout>
927 <para>
928 This command provides a forwarding operation. The delivery that it sets up is
929 significant unless the command is preceded by <quote>unseen</quote> (see section
930 <xref linkend="SECTsigdel"/>). The message is sent on to the given address, exactly as
931 happens if the address had appeared in a traditional <filename>.forward</filename> file. If you
932 want to deliver the message to a number of different addresses, you can use
933 more than one <command>deliver</command> command (each one may have only one address).
934 However, duplicate addresses are discarded.
935 </para>
936 <para>
937 To deliver a copy of the message to your normal mailbox, your login name can be
938 given as the address. Once an address has been processed by the filtering
939 mechanism, an identical generated address will not be so processed again, so
940 doing this does not cause a loop.
941 </para>
942 <para>
943 However, if you have a mail alias, you should <emphasis>not</emphasis> refer to it here. For
944 example, if the mail address <emphasis>L.Gulliver</emphasis> is aliased to <emphasis>lg303</emphasis> then all
945 references in Gulliver&#x2019;s <filename>.forward</filename> file should be to <emphasis>lg303</emphasis>. A reference
946 to the alias will not work for messages that are addressed to that alias,
947 since, like <filename>.forward</filename> file processing, aliasing is performed only once on an
948 address, in order to avoid looping.
949 </para>
950 <para>
951 Following the new address, an optional second address, preceded by
952 <quote>errors_to</quote> may appear. This changes the address to which delivery errors on
953 the forwarded message will be sent. Instead of going to the message&#x2019;s original
954 sender, they go to this new address. For ordinary users, the only value that is
955 permitted for this address is the user whose filter file is being processed.
956 For example, the user <emphasis>lg303</emphasis> whose mailbox is in the domain
957 <emphasis>lilliput.example</emphasis> could have a filter file that contains
958 </para>
959 <literallayout class="monospaced">
960 deliver jon@elsewhere.example errors_to lg303@lilliput.example
961 </literallayout>
962 <para>
963 Clearly, using this feature makes sense only in situations where not all
964 messages are being forwarded. In particular, bounce messages must not be
965 forwarded in this way, as this is likely to create a mail loop if something
966 goes wrong.
967 </para>
968 </section>
969 <section id="SECTsave">
970 <title>The save command</title>
971 <literallayout>
972 <literal>     save </literal>&lt;<emphasis>file name</emphasis>&gt;
973 <literal>e.g. save $home/mail/bookfolder</literal>
974 </literallayout>
975 <para>
976 This command specifies that a copy of the message is to be appended to the
977 given file (that is, the file is to be used as a mail folder). The delivery
978 that <command>save</command> sets up is significant unless the command is preceded by
979 <quote>unseen</quote> (see section <xref linkend="SECTsigdel"/>).
980 </para>
981 <para>
982 More than one <command>save</command> command may be obeyed; each one causes a copy of the
983 message to be written to its argument file, provided they are different
984 (duplicate <command>save</command> commands are ignored).
985 </para>
986 <para>
987 If the file name does not start with a / character, the contents of the
988 <varname>$home</varname> variable are prepended, unless it is empty, <phrase revisionflag="changed">or the system
989 administrator has disabled this feature.</phrase> In conventional configurations, this
990 variable is normally set in a user filter to the user&#x2019;s home directory, but the
991 system administrator may set it to some other path. In some configurations,
992 <varname>$home</varname> may be unset, <phrase revisionflag="changed">or prepending may be disabled,</phrase> in which case a
993 non-absolute path name may be generated. Such configurations convert this to an
994 absolute path when the delivery takes place. In a system filter, <varname>$home</varname> is
995 never set.
996 </para>
997 <para>
998 The user must of course have permission to write to the file, and the writing
999 of the file takes place in a process that is running as the user, under the
1000 user&#x2019;s primary group. Any secondary groups to which the user may belong are not
1001 normally taken into account, though the system administrator can configure Exim
1002 to set them up. In addition, the ability to use this command at all is
1003 controlled by the system administrator &ndash; it may be forbidden on some systems.
1004 </para>
1005 <para>
1006 An optional mode value may be given after the file name. The value for the mode
1007 is interpreted as an octal number, even if it does not begin with a zero. For
1008 example:
1009 </para>
1010 <literallayout class="monospaced">
1011 save /some/folder 640
1012 </literallayout>
1013 <para>
1014 This makes it possible for users to override the system-wide mode setting for
1015 file deliveries, which is normally 600. If an existing file does not have the
1016 correct mode, it is changed.
1017 </para>
1018 <para>
1019 An alternative form of delivery may be enabled on your system, in which each
1020 message is delivered into a new file in a given directory. If this is the case,
1021 this functionality can be requested by giving the directory name terminated by
1022 a slash after the <command>save</command> command, for example
1023 </para>
1024 <literallayout class="monospaced">
1025 save separated/messages/
1026 </literallayout>
1027 <para>
1028 There are several different formats for such deliveries; check with your system
1029 administrator or local documentation to find out which (if any) are available
1030 on your system. If this functionality is not enabled, the use of a path name
1031 ending in a slash causes an error.
1032 </para>
1033 </section>
1034 <section id="SECTpipe">
1035 <title>The pipe command</title>
1036 <literallayout>
1037 <literal>     pipe </literal>&lt;<emphasis>command</emphasis>&gt;
1038 <literal>e.g. pipe "$home/bin/countmail $sender_address"</literal>
1039 </literallayout>
1040 <para>
1041 This command specifies that the message is to be delivered to the specified
1042 command using a pipe. The delivery that it sets up is significant unless the
1043 command is preceded by <quote>unseen</quote> (see section <xref linkend="SECTsigdel"/>). Remember,
1044 however, that no deliveries are done while the filter is being processed. All
1045 deliveries happen later on. Therefore, the result of running the pipe is not
1046 available to the filter.
1047 </para>
1048 <para>
1049 When the deliveries are done, a separate process is run, and a copy of the
1050 message is passed on its standard input. The process runs as the user, under
1051 the user&#x2019;s primary group. Any secondary groups to which the user may belong are
1052 not normally taken into account, though the system administrator can configure
1053 Exim to set them up. More than one <command>pipe</command> command may appear; each one causes
1054 a copy of the message to be written to its argument pipe, provided they are
1055 different (duplicate <command>pipe</command> commands are ignored).
1056 </para>
1057 <para>
1058 When the time comes to transport the message, the command supplied to <command>pipe</command>
1059 is split up by Exim into a command name and a number of arguments. These are
1060 delimited by white space except for arguments enclosed in double quotes, in
1061 which case backslash is interpreted as an escape, or in single quotes, in which
1062 case no escaping is recognized. Note that as the whole command is normally
1063 supplied in double quotes, a second level of quoting is required for internal
1064 double quotes. For example:
1065 </para>
1066 <literallayout class="monospaced">
1067 pipe "$home/myscript \"size is $message_size\""
1068 </literallayout>
1069 <para>
1070 String expansion is performed on the separate components after the line has
1071 been split up, and the command is then run directly by Exim; it is not run
1072 under a shell. Therefore, substitution cannot change the number of arguments,
1073 nor can quotes, backslashes or other shell metacharacters in variables cause
1074 confusion.
1075 </para>
1076 <para>
1077 Documentation for some programs that are normally run via this kind of pipe
1078 often suggest that the command should start with
1079 </para>
1080 <literallayout class="monospaced">
1081 IFS=" "
1082 </literallayout>
1083 <para>
1084 This is a shell command, and should <emphasis>not</emphasis> be present in Exim filter files,
1085 since it does not normally run the command under a shell.
1086 </para>
1087 <para>
1088 However, there is an option that the administrator can set to cause a shell to
1089 be used. In this case, the entire command is expanded as a single string and
1090 passed to the shell for interpretation. It is recommended that this be avoided
1091 if at all possible, since it can lead to problems when inserted variables
1092 contain shell metacharacters.
1093 </para>
1094 <para>
1095 The default PATH set up for the command is determined by the system
1096 administrator, usually containing at least <filename>/bin</filename> and <filename>/usr/bin</filename> so that
1097 common commands are available without having to specify an absolute file name.
1098 However, it is possible for the system administrator to restrict the pipe
1099 facility so that the command name must not contain any / characters, and must
1100 be found in one of the directories in the configured PATH. It is also possible
1101 for the system administrator to lock out the use of the <command>pipe</command> command
1102 altogether.
1103 </para>
1104 <para>
1105 When the command is run, a number of environment variables are set up. The
1106 complete list for pipe deliveries may be found in the Exim reference manual.
1107 Those that may be useful for pipe deliveries from user filter files are:
1108 </para>
1109 <literallayout>
1110 <literal>DOMAIN            </literal>   the domain of the address
1111 <literal>HOME              </literal>   your home directory
1112 <literal>LOCAL_PART        </literal>   see below
1113 <literal>LOCAL_PART_PREFIX </literal>   see below
1114 <literal>LOCAL_PART_SUFFIX </literal>   see below
1115 <literal>LOGNAME           </literal>   your login name
1116 <literal>MESSAGE_ID        </literal>   the unique id of the message
1117 <literal>PATH              </literal>   the command search path
1118 <literal>RECIPIENT         </literal>   the complete recipient address
1119 <literal>SENDER            </literal>   the sender of the message
1120 <literal>SHELL             </literal>   <literal>/bin/sh</literal>
1121 <literal>USER              </literal>   see below
1122 </literallayout>
1123 <para>
1124 LOCAL_PART, LOGNAME, and USER are all set to the same value, namely, your login
1125 id. LOCAL_PART_PREFIX and LOCAL_PART_SUFFIX may be set if Exim is configured to
1126 recognize prefixes or suffixes in the local parts of addresses. For example, a
1127 message addressed to <emphasis>pat-suf2@domain.example</emphasis> may cause the filter for user
1128 <emphasis>pat</emphasis> to be run. If this sets up a pipe delivery, LOCAL_PART_SUFFIX is
1129 <literal>-suf2</literal> when the pipe command runs. The system administrator has to configure
1130 Exim specially for this feature to be available.
1131 </para>
1132 <para>
1133 If you run a command that is a shell script, be very careful in your use of
1134 data from the incoming message in the commands in your script. RFC 2822 is very
1135 generous in the characters that are permitted to appear in mail addresses, and
1136 in particular, an address may begin with a vertical bar or a slash. For this
1137 reason you should always use quotes round any arguments that involve data from
1138 the message, like this:
1139 </para>
1140 <literallayout class="monospaced">
1141 /some/command '$SENDER'
1142 </literallayout>
1143 <para>
1144 so that inserted shell meta-characters do not cause unwanted effects.
1145 </para>
1146 <para>
1147 Remember that, as was explained earlier, the pipe command is not run at the
1148 time the filter file is interpreted. The filter just defines what deliveries
1149 are required for one particular addressee of a message. The deliveries
1150 themselves happen later, once Exim has decided everything that needs to be done
1151 for the message.
1152 </para>
1153 <para>
1154 A consequence of this is that you cannot inspect the return code from the pipe
1155 command from within the filter. Nevertheless, the code returned by the command
1156 is important, because Exim uses it to decide whether the delivery has succeeded
1157 or failed.
1158 </para>
1159 <para>
1160 The command should return a zero completion code if all has gone well. Most
1161 non-zero codes are treated by Exim as indicating a failure of the pipe. This is
1162 treated as a delivery failure, causing the message to be returned to its
1163 sender. However, there are some completion codes that are treated as temporary
1164 errors. The message remains on Exim&#x2019;s spool disk, and the delivery is tried
1165 again later, though it will ultimately time out if the delivery failures go on
1166 too long. The completion codes to which this applies can be specified by the
1167 system administrator; the default values are 73 and 75.
1168 </para>
1169 <para>
1170 The pipe command should not normally write anything to its standard output or
1171 standard error file descriptors. If it does, whatever is written is normally
1172 returned to the sender of the message as a delivery error, though this action
1173 can be varied by the system administrator.
1174 </para>
1175 </section>
1176 <section id="SECTmail">
1177 <title>Mail commands</title>
1178 <para>
1179 There are two commands that cause the creation of a new mail message, neither
1180 of which count as a significant delivery unless the command is preceded by the
1181 word <quote>seen</quote> (see section <xref linkend="SECTsigdel"/>). This is a powerful facility, but
1182 it should be used with care, because of the danger of creating infinite
1183 sequences of messages. The system administrator can forbid the use of these
1184 commands altogether.
1185 </para>
1186 <para>
1187 To help prevent runaway message sequences, these commands have no effect when
1188 the incoming message is a bounce (delivery error) message, and messages sent by
1189 this means are treated as if they were reporting delivery errors. Thus, they
1190 should never themselves cause a bounce message to be returned. The basic
1191 mail-sending command is
1192 </para>
1193 <literallayout>
1194 <literal>mail [to </literal>&lt;<emphasis>address-list</emphasis>&gt;<literal>]</literal>
1195 <literal>     [cc </literal>&lt;<emphasis>address-list</emphasis>&gt;<literal>]</literal>
1196 <literal>     [bcc </literal>&lt;<emphasis>address-list</emphasis>&gt;<literal>]</literal>
1197 <literal>     [from </literal>&lt;<emphasis>address</emphasis>&gt;<literal>]</literal>
1198 <literal>     [reply_to </literal>&lt;<emphasis>address</emphasis>&gt;<literal>]</literal>
1199 <literal>     [subject </literal>&lt;<emphasis>text</emphasis>&gt;<literal>]</literal>
1200 <literal>     [extra_headers </literal>&lt;<emphasis>text</emphasis>&gt;<literal>]</literal>
1201 <literal>     [text </literal>&lt;<emphasis>text</emphasis>&gt;<literal>]</literal>
1202 <literal>     [[expand] file </literal>&lt;<emphasis>filename</emphasis>&gt;<literal>]</literal>
1203 <literal>     [return message]</literal>
1204 <literal>     [log </literal>&lt;<emphasis>log file name</emphasis>&gt;<literal>]</literal>
1205 <literal>     [once </literal>&lt;<emphasis>note file name</emphasis>&gt;<literal>]</literal>
1206 <literal>     [once_repeat </literal>&lt;<emphasis>time interval</emphasis>&gt;<literal>]</literal>
1207
1208 <literal>e.g. mail text "Your message about $h_subject: has been received"</literal>
1209 </literallayout>
1210 <para>
1211 Each &lt;<emphasis>address-list</emphasis>&gt; can contain a number of addresses, separated by commas,
1212 in the format of a <emphasis>To:</emphasis> or <emphasis>Cc:</emphasis> header line. In fact, the text you supply
1213 here is copied exactly into the appropriate header line. It may contain
1214 additional information as well as email addresses. For example:
1215 </para>
1216 <literallayout class="monospaced">
1217 mail to "Julius Caesar &lt;jc@rome.example&gt;, \
1218          &lt;ma@rome.example&gt; (Mark A.)"
1219 </literallayout>
1220 <para>
1221 Similarly, the texts supplied for <option>from</option> and <option>reply_to</option> are copied into
1222 their respective header lines.
1223 </para>
1224 <para>
1225 As a convenience for use in one common case, there is also a command called
1226 <command>vacation</command>. It behaves in the same way as <command>mail</command>, except that the defaults
1227 for the <option>subject</option>, <option>file</option>, <option>log</option>, <option>once</option>, and <option>once_repeat</option> options
1228 are
1229 </para>
1230 <literallayout class="monospaced">
1231 subject "On vacation"
1232 expand file .vacation.msg
1233 log  .vacation.log
1234 once .vacation
1235 once_repeat 7d
1236 </literallayout>
1237 <para>
1238 respectively. These are the same file names and repeat period used by the
1239 traditional Unix <command>vacation</command> command. The defaults can be overridden by
1240 explicit settings, but if a file name is given its contents are expanded only
1241 if explicitly requested.
1242 </para>
1243 <para>
1244 <emphasis role="bold">Warning</emphasis>: The <command>vacation</command> command should always be used conditionally,
1245 subject to at least the <command>personal</command> condition (see section <xref linkend="SECTpersonal"/>
1246 below) so as not to send automatic replies to non-personal messages from
1247 mailing lists or elsewhere. Sending an automatic response to a mailing list or
1248 a mailing list manager is an Internet Sin.
1249 </para>
1250 <para>
1251 For both commands, the key/value argument pairs can appear in any order. At
1252 least one of <option>text</option> or <option>file</option> must appear (except with <command>vacation</command>, where
1253 there is a default for <option>file</option>); if both are present, the text string appears
1254 first in the message. If <option>expand</option> precedes <option>file</option>, each line of the file is
1255 subject to string expansion before it is included in the message.
1256 </para>
1257 <para>
1258 Several lines of text can be supplied to <option>text</option> by including the escape
1259 sequence <quote>\n</quote> in the string wherever a newline is required. If the command is
1260 output during filter file testing, newlines in the text are shown as <quote>\n</quote>.
1261 </para>
1262 <para>
1263 Note that the keyword for creating a <emphasis>Reply-To:</emphasis> header is <option>reply_to</option>,
1264 because Exim keywords may contain underscores, but not hyphens. If the <option>from</option>
1265 keyword is present and the given address does not match the user who owns the
1266 forward file, Exim normally adds a <emphasis>Sender:</emphasis> header to the message, though it
1267 can be configured not to do this.
1268 </para>
1269 <para>
1270 The <option>extra_headers</option> keyword allows you to add custom header lines to the
1271 message. The text supplied must be one or more syntactically valid RFC 2822
1272 header lines. You can use <quote>\n</quote> within quoted text to specify newlines between
1273 headers, and also to define continued header lines. For example:
1274 </para>
1275 <literallayout class="monospaced">
1276 extra_headers "h1: first\nh2: second\n continued\nh3: third"
1277 </literallayout>
1278 <para>
1279 No newline should appear at the end of the final header line.
1280 </para>
1281 <para>
1282 If no <option>to</option> argument appears, the message is sent to the address in the
1283 <varname>$reply_address</varname> variable (see section <xref linkend="SECTfilterstringexpansion"/> above).
1284 An <emphasis>In-Reply-To:</emphasis> header is automatically included in the created message,
1285 giving a reference to the message identification of the incoming message.
1286 </para>
1287 <para>
1288 If <option>return message</option> is specified, the incoming message that caused the filter
1289 file to be run is added to the end of the message, subject to a maximum size
1290 limitation.
1291 </para>
1292 <para>
1293 If a log file is specified, a line is added to it for each message sent.
1294 </para>
1295 <para>
1296 If a <option>once</option> file is specified, it is used to hold a database for remembering
1297 who has received a message, and no more than one message is ever sent to any
1298 particular address, unless <option>once_repeat</option> is set. This specifies a time
1299 interval after which another copy of the message is sent. The interval is
1300 specified as a sequence of numbers, each followed by the initial letter of one
1301 of <quote>seconds</quote>, <quote>minutes</quote>, <quote>hours</quote>, <quote>days</quote>, or <quote>weeks</quote>. For example,
1302 </para>
1303 <literallayout class="monospaced">
1304 once_repeat 5d4h
1305 </literallayout>
1306 <para>
1307 causes a new message to be sent if at least 5 days and 4 hours have elapsed
1308 since the last one was sent. There must be no white space in a time interval.
1309 </para>
1310 <para>
1311 Commonly, the file name specified for <option>once</option> is used as the base name for
1312 direct-access (DBM) file operations. There are a number of different DBM
1313 libraries in existence. Some operating systems provide one as a default, but
1314 even in this case a different one may have been used when building Exim. With
1315 some DBM libraries, specifying <option>once</option> results in two files being created,
1316 with the suffixes <filename>.dir</filename> and <filename>.pag</filename> being added to the given name. With
1317 some others a single file with the suffix <filename>.db</filename> is used, or the name is used
1318 unchanged.
1319 </para>
1320 <para>
1321 Using a DBM file for implementing the <option>once</option> feature means that the file
1322 grows as large as necessary. This is not usually a problem, but some system
1323 administrators want to put a limit on it. The facility can be configured not to
1324 use a DBM file, but instead, to use a regular file with a maximum size. The
1325 data in such a file is searched sequentially, and if the file fills up, the
1326 oldest entry is deleted to make way for a new one. This means that some
1327 correspondents may receive a second copy of the message after an unpredictable
1328 interval. Consult your local information to see if your system is configured
1329 this way.
1330 </para>
1331 <para>
1332 More than one <command>mail</command> or <command>vacation</command> command may be obeyed in a single filter
1333 run; they are all honoured, even when they are to the same recipient.
1334 </para>
1335 </section>
1336 <section id="SECTlog">
1337 <title>Logging commands</title>
1338 <para>
1339 A log can be kept of actions taken by a filter file. This facility is normally
1340 available in conventional configurations, but there are some situations where
1341 it might not be. Also, the system administrator may choose to disable it. Check
1342 your local information if in doubt.
1343 </para>
1344 <para>
1345 Logging takes place while the filter file is being interpreted. It does not
1346 queue up for later like the delivery commands. The reason for this is so that a
1347 log file need be opened only once for several write operations. There are two
1348 commands, neither of which constitutes a significant delivery. The first
1349 defines a file to which logging output is subsequently written:
1350 </para>
1351 <literallayout>
1352 <literal>     logfile </literal>&lt;<emphasis>file name</emphasis>&gt;
1353 <literal>e.g. logfile $home/filter.log</literal>
1354 </literallayout>
1355 <para>
1356 The file name must be fully qualified. You can use <varname>$home</varname>, as in this
1357 example, to refer to your home directory. The file name may optionally be
1358 followed by a mode for the file, which is used if the file has to be created.
1359 For example,
1360 </para>
1361 <literallayout class="monospaced">
1362 logfile $home/filter.log 0644
1363 </literallayout>
1364 <para>
1365 The number is interpreted as octal, even if it does not begin with a zero.
1366 The default for the mode is 600. It is suggested that the <command>logfile</command> command
1367 normally appear as the first command in a filter file. Once a log file has
1368 been obeyed, the <command>logwrite</command> command can be used to write to it:
1369 </para>
1370 <literallayout>
1371 <literal>     logwrite "</literal>&lt;<emphasis>some text string</emphasis>&gt;<literal>"</literal>
1372 <literal>e.g. logwrite "$tod_log $message_id processed"</literal>
1373 </literallayout>
1374 <para>
1375 It is possible to have more than one <command>logfile</command> command, to specify writing to
1376 different log files in different circumstances. Writing takes place at the end
1377 of the file, and a newline character is added to the end of each string if
1378 there isn&#x2019;t one already there. Newlines can be put in the middle of the string
1379 by using the <quote>\n</quote> escape sequence. Lines from simultaneous deliveries may get
1380 interleaved in the file, as there is no interlocking, so you should plan your
1381 logging with this in mind. However, data should not get lost.
1382 </para>
1383 </section>
1384 <section id="SECTfinish">
1385 <title>The finish command</title>
1386 <para>
1387 The command <command>finish</command>, which has no arguments, causes Exim to stop
1388 interpreting the filter file. This is not a significant action unless preceded
1389 by <quote>seen</quote>. A filter file containing only <quote>seen finish</quote> is a black hole.
1390 </para>
1391 </section>
1392 <section id="SECTtestprint">
1393 <title>The testprint command</title>
1394 <para>
1395 It is sometimes helpful to be able to print out the values of variables when
1396 testing filter files. The command
1397 </para>
1398 <literallayout>
1399 <literal>     testprint </literal>&lt;<emphasis>text</emphasis>&gt;
1400 <literal>e.g. testprint "home=$home reply_address=$reply_address"</literal>
1401 </literallayout>
1402 <para>
1403 does nothing when mail is being delivered. However, when the filtering code is
1404 being tested by means of the <option>-bf</option> option (see section <xref linkend="SECTtesting"/>
1405 above), the value of the string is written to the standard output.
1406 </para>
1407 </section>
1408 <section id="SECTfail">
1409 <title>The fail command</title>
1410 <para>
1411 When Exim&#x2019;s filtering facilities are being used as a system filter, the
1412 <command>fail</command> command is available, to force delivery failure. Because this command
1413 is normally usable only by the system administrator, and not enabled for use by
1414 ordinary users, it is described in more detail in the main Exim specification
1415 rather than in this document.
1416 </para>
1417 </section>
1418 <section id="SECTfreeze">
1419 <title>The freeze command</title>
1420 <para>
1421 When Exim&#x2019;s filtering facilities are being used as a system filter, the
1422 <command>freeze</command> command is available, to freeze a message on the queue. Because this
1423 command is normally usable only by the system administrator, and not enabled
1424 for use by ordinary users, it is described in more detail in the main Exim
1425 specification rather than in this document.
1426 </para>
1427 </section>
1428 <section id="SECTheaders">
1429 <title>The headers command</title>
1430 <para>
1431 The <command>headers</command> command can be used to change the target character set that is
1432 used when translating the contents of encoded header lines for insertion by the
1433 <varname>$header_</varname> mechanism (see section <xref linkend="SECTheadervariables"/> above). The
1434 default can be set in the Exim configuration; if not specified, ISO-8859-1 is
1435 used. The only currently supported format for the <command>headers</command> command in user
1436 filters is as in this example:
1437 </para>
1438 <literallayout class="monospaced">
1439 headers charset "UTF-8"
1440 </literallayout>
1441 <para>
1442 That is, <command>headers</command> is followed by the word <quote>charset</quote> and then the name of a
1443 character set. This particular example would be useful if you wanted to compare
1444 the contents of a header to a UTF-8 string.
1445 </para>
1446 <para>
1447 In system filter files, the <command>headers</command> command can be used to add or remove
1448 header lines from the message. These features are described in the main Exim
1449 specification.
1450 </para>
1451 </section>
1452 <section id="SECTif">
1453 <title>Obeying commands conditionally</title>
1454 <para>
1455 Most of the power of filtering comes from the ability to test conditions and
1456 obey different commands depending on the outcome. The <command>if</command> command is used to
1457 specify conditional execution, and its general form is
1458 </para>
1459 <literallayout>
1460 <literal>if    </literal>&lt;<emphasis>condition</emphasis>&gt;
1461 <literal>then  </literal>&lt;<emphasis>commands</emphasis>&gt;
1462 <literal>elif  </literal>&lt;<emphasis>condition</emphasis>&gt;
1463 <literal>then  </literal>&lt;<emphasis>commands</emphasis>&gt;
1464 <literal>else  </literal>&lt;<emphasis>commands</emphasis>&gt;
1465 <literal>endif</literal>
1466 </literallayout>
1467 <para>
1468 There may be any number of <command>elif</command> and <command>then</command> sections (including none) and
1469 the <command>else</command> section is also optional. Any number of commands, including nested
1470 <command>if</command> commands, may appear in any of the &lt;<emphasis>commands</emphasis>&gt; sections.
1471 </para>
1472 <para>
1473 Conditions can be combined by using the words <command>and</command> and <command>or</command>, and round
1474 brackets (parentheses) can be used to specify how several conditions are to
1475 combine. Without brackets, <command>and</command> is more binding than <command>or</command>. For example:
1476 </para>
1477 <literallayout class="monospaced">
1478 if
1479 $h_subject: contains "Make money" or
1480 $h_precedence: is "junk" or
1481 ($h_sender: matches ^\\d{8}@ and not personal) or
1482 $message_body contains "this is not spam"
1483 then
1484 seen finish
1485 endif
1486 </literallayout>
1487 <para>
1488 A condition can be preceded by <command>not</command> to negate it, and there are also some
1489 negative forms of condition that are more English-like.
1490 </para>
1491 </section>
1492 <section>
1493 <title>String testing conditions</title>
1494 <para>
1495 There are a number of conditions that operate on text strings, using the words
1496 <quote>begins</quote>, <quote>ends</quote>, <quote>is</quote>, <quote>contains</quote> and <quote>matches</quote>. If you want to
1497 apply the same test to more than one header line, you can easily concatenate
1498 them into a single string for testing, as in this example:
1499 </para>
1500 <literallayout class="monospaced">
1501 if "$h_to:, $h_cc:" contains me@domain.example then ...
1502 </literallayout>
1503 <para>
1504 If a string-testing condition name is written in lower case, the testing
1505 of letters is done without regard to case; if it is written in upper case
1506 (for example, <quote>CONTAINS</quote>), the case of letters is taken into account.
1507 </para>
1508 <literallayout>
1509 <literal>     </literal>&lt;<emphasis>text1</emphasis>&gt;<literal> begins </literal>&lt;<emphasis>text2</emphasis>&gt;
1510 <literal>     </literal>&lt;<emphasis>text1</emphasis>&gt;<literal> does not begin </literal>&lt;<emphasis>text2</emphasis>&gt;
1511 <literal>e.g. $header_from: begins "Friend@"</literal>
1512 </literallayout>
1513 <para>
1514 A <quote>begins</quote> test checks for the presence of the second string at the start of
1515 the first, both strings having been expanded.
1516 </para>
1517 <literallayout>
1518 <literal>     </literal>&lt;<emphasis>text1</emphasis>&gt;<literal> ends </literal>&lt;<emphasis>text2</emphasis>&gt;
1519 <literal>     </literal>&lt;<emphasis>text1</emphasis>&gt;<literal> does not end </literal>&lt;<emphasis>text2</emphasis>&gt;
1520 <literal>e.g. $header_from: ends "public.com.example"</literal>
1521 </literallayout>
1522 <para>
1523 An <quote>ends</quote> test checks for the presence of the second string at the end of
1524 the first, both strings having been expanded.
1525 </para>
1526 <literallayout>
1527 <literal>     </literal>&lt;<emphasis>text1</emphasis>&gt;<literal> is </literal>&lt;<emphasis>text2</emphasis>&gt;
1528 <literal>     </literal>&lt;<emphasis>text1</emphasis>&gt;<literal> is not </literal>&lt;<emphasis>text2</emphasis>&gt;
1529 <literal>e.g. $local_part_suffix is "-foo"</literal>
1530 </literallayout>
1531 <para>
1532 An <quote>is</quote> test does an exact match between the strings, having first expanded
1533 both strings.
1534 </para>
1535 <literallayout>
1536 <literal>     </literal>&lt;<emphasis>text1</emphasis>&gt;<literal> contains </literal>&lt;<emphasis>text2</emphasis>&gt;
1537 <literal>     </literal>&lt;<emphasis>text1</emphasis>&gt;<literal> does not contain </literal>&lt;<emphasis>text2</emphasis>&gt;
1538 <literal>e.g. $header_subject: contains "evolution"</literal>
1539 </literallayout>
1540 <para>
1541 A <quote>contains</quote> test does a partial string match, having expanded both strings.
1542 </para>
1543 <literallayout>
1544 <literal>     </literal>&lt;<emphasis>text1</emphasis>&gt;<literal> matches </literal>&lt;<emphasis>text2</emphasis>&gt;
1545 <literal>     </literal>&lt;<emphasis>text1</emphasis>&gt;<literal> does not match </literal>&lt;<emphasis>text2</emphasis>&gt;
1546 <literal>e.g. $sender_address matches "(bill|john)@"</literal>
1547 </literallayout>
1548 <para>
1549 For a <quote>matches</quote> test, after expansion of both strings, the second one is
1550 interpreted as a regular expression. Exim uses the PCRE regular expression
1551 library, which provides regular expressions that are compatible with Perl.
1552 </para>
1553 <para>
1554 The match succeeds if the regular expression matches any part of the first
1555 string. If you want a regular expression to match only at the start or end of
1556 the subject string, you must encode that requirement explicitly, using the
1557 <literal>^</literal> or <literal>$</literal> metacharacters. The above example, which is not so constrained,
1558 matches all these addresses:
1559 </para>
1560 <literallayout class="monospaced">
1561 bill@test.example
1562 john@some.example
1563 spoonbill@example.com
1564 littlejohn@example.com
1565 </literallayout>
1566 <para>
1567 To match only the first two, you could use this:
1568 </para>
1569 <literallayout class="monospaced">
1570 if $sender_address matches "^(bill|john)@" then ...
1571 </literallayout>
1572 <para>
1573 Care must be taken if you need a backslash in a regular expression, because
1574 backslashes are interpreted as escape characters both by the string expansion
1575 code and by Exim&#x2019;s normal processing of strings in quotes. For example, if you
1576 want to test the sender address for a domain ending in <emphasis>.com</emphasis> the regular
1577 expression is
1578 </para>
1579 <literallayout class="monospaced">
1580 \.com$
1581 </literallayout>
1582 <para>
1583 The backslash and dollar sign in that expression have to be escaped when used
1584 in a filter command, as otherwise they would be interpreted by the expansion
1585 code. Thus, what you actually write is
1586 </para>
1587 <literallayout class="monospaced">
1588 if $sender_address matches \\.com\$
1589 </literallayout>
1590 <para>
1591 An alternative way of handling this is to make use of the <literal>\N</literal> expansion
1592 flag for suppressing expansion:
1593 </para>
1594 <literallayout class="monospaced">
1595 if $sender_address matches \N\.com$\N
1596 </literallayout>
1597 <para>
1598 Everything between the two occurrences of <literal>\N</literal> is copied without change by
1599 the string expander (and in fact you do not need the final one, because it is
1600 at the end of the string). If the regular expression is given in quotes
1601 (mandatory only if it contains white space) you have to write either
1602 </para>
1603 <literallayout class="monospaced">
1604 if $sender_address matches "\\\\.com\\$"
1605 </literallayout>
1606 <para>
1607 or
1608 </para>
1609 <literallayout class="monospaced">
1610 if $sender_address matches "\\N\\.com$\\N"
1611 </literallayout>
1612 <para>
1613 If the regular expression contains bracketed sub-expressions, numeric
1614 variable substitutions such as <varname>$1</varname> can be used in the subsequent actions
1615 after a successful match. If the match fails, the values of the numeric
1616 variables remain unchanged. Previous values are not restored after <command>endif</command>.
1617 In other words, only one set of values is ever available. If the condition
1618 contains several sub-conditions connected by <command>and</command> or <command>or</command>, it is the
1619 strings extracted from the last successful match that are available in
1620 subsequent actions. Numeric variables from any one sub-condition are also
1621 available for use in subsequent sub-conditions, because string expansion of a
1622 condition occurs just before it is tested.
1623 </para>
1624 </section>
1625 <section>
1626 <title>Numeric testing conditions</title>
1627 <para>
1628 The following conditions are available for performing numerical tests:
1629 </para>
1630 <literallayout>
1631 <literal>     </literal>&lt;<emphasis>number1</emphasis>&gt;<literal> is above </literal>&lt;<emphasis>number2</emphasis>&gt;
1632 <literal>     </literal>&lt;<emphasis>number1</emphasis>&gt;<literal> is not above </literal>&lt;<emphasis>number2</emphasis>&gt;
1633 <literal>     </literal>&lt;<emphasis>number1</emphasis>&gt;<literal> is below </literal>&lt;<emphasis>number2</emphasis>&gt;
1634 <literal>     </literal>&lt;<emphasis>number1</emphasis>&gt;<literal> is not below </literal>&lt;<emphasis>number2</emphasis>&gt;
1635 <literal>e.g. $message_size is not above 10k</literal>
1636 </literallayout>
1637 <para>
1638 The &lt;<emphasis>number</emphasis>&gt; arguments must expand to strings of digits, optionally
1639 followed by one of the letters K or M (upper case or lower case) which cause
1640 multiplication by 1024 and 1024x1024 respectively.
1641 </para>
1642 </section>
1643 <section>
1644 <title>Testing for significant deliveries</title>
1645 <para>
1646 You can use the <command>delivered</command> condition to test whether or not any previously
1647 obeyed filter commands have set up a significant delivery. For example:
1648 </para>
1649 <literallayout class="monospaced">
1650 if not delivered then save mail/anomalous endif
1651 </literallayout>
1652 <para>
1653 <quote>Delivered</quote> is perhaps a poor choice of name for this condition, because the
1654 message has not actually been delivered; rather, a delivery has been set up for
1655 later processing.
1656 </para>
1657 </section>
1658 <section>
1659 <title>Testing for error messages</title>
1660 <para>
1661 The condition <command>error_message</command> is true if the incoming message is a bounce
1662 (mail delivery error) message. Putting the command
1663 </para>
1664 <literallayout class="monospaced">
1665 if error_message then finish endif
1666 </literallayout>
1667 <para>
1668 at the head of your filter file is a useful insurance against things going
1669 wrong in such a way that you cannot receive delivery error reports. <emphasis role="bold">Note</emphasis>:
1670 <command>error_message</command> is a condition, not an expansion variable, and therefore is
1671 not preceded by <literal>$</literal>.
1672 </para>
1673 </section>
1674 <section>
1675 <title>Testing a list of addresses</title>
1676 <para>
1677 There is a facility for looping through a list of addresses and applying a
1678 condition to each of them. It takes the form
1679 </para>
1680 <literallayout>
1681 <literal>foranyaddress </literal>&lt;<emphasis>string</emphasis>&gt;<literal> (</literal>&lt;<emphasis>condition</emphasis>&gt;<literal>)</literal>
1682 </literallayout>
1683 <para>
1684 where &lt;<emphasis>string</emphasis>&gt; is interpreted as a list of RFC 2822 addresses, as in a
1685 typical header line, and &lt;<emphasis>condition</emphasis>&gt; is any valid filter condition or
1686 combination of conditions. The <quote>group</quote> syntax that is defined for certain
1687 header lines that contain addresses is supported.
1688 </para>
1689 <para>
1690 The parentheses surrounding the condition are mandatory, to delimit it from
1691 possible further sub-conditions of the enclosing <command>if</command> command. Within the
1692 condition, the expansion variable <varname>$thisaddress</varname> is set to the non-comment
1693 portion of each of the addresses in the string in turn. For example, if the
1694 string is
1695 </para>
1696 <literallayout class="monospaced">
1697 B.Simpson &lt;bart@sfld.example&gt;, lisa@sfld.example (his sister)
1698 </literallayout>
1699 <para>
1700 then <varname>$thisaddress</varname> would take on the values <literal>bart@sfld.example</literal> and
1701 <literal>lisa@sfld.example</literal> in turn.
1702 </para>
1703 <para>
1704 If there are no valid addresses in the list, the whole condition is false. If
1705 the internal condition is true for any one address, the overall condition is
1706 true and the loop ends. If the internal condition is false for all addresses in
1707 the list, the overall condition is false. This example tests for the presence
1708 of an eight-digit local part in any address in a <emphasis>To:</emphasis> header:
1709 </para>
1710 <literallayout class="monospaced">
1711 if foranyaddress $h_to: ( $thisaddress matches ^\\d{8}@ ) then ...
1712 </literallayout>
1713 <para>
1714 When the overall condition is true, the value of <varname>$thisaddress</varname> in the
1715 commands that follow <command>then</command> is the last value it took on inside the loop. At
1716 the end of the <command>if</command> command, the value of <varname>$thisaddress</varname> is reset to what it
1717 was before. It is best to avoid the use of multiple occurrences of
1718 <command>foranyaddress</command>, nested or otherwise, in a single <command>if</command> command, if the
1719 value of <varname>$thisaddress</varname> is to be used afterwards, because it isn&#x2019;t always
1720 clear what the value will be. Nested <command>if</command> commands should be used instead.
1721 </para>
1722 <para>
1723 Header lines can be joined together if a check is to be applied to more than
1724 one of them. For example:
1725 </para>
1726 <literallayout class="monospaced">
1727 if foranyaddress $h_to:,$h_cc: ....
1728 </literallayout>
1729 <para>
1730 This scans through the addresses in both the <emphasis>To:</emphasis> and the <emphasis>Cc:</emphasis> headers.
1731 </para>
1732 </section>
1733 <section id="SECTpersonal">
1734 <title>Testing for personal mail</title>
1735 <para>
1736 A common requirement is to distinguish between incoming personal mail and mail
1737 from a mailing list, or from a robot or other automatic process (for example, a
1738 bounce message). In particular, this test is normally required for <quote>vacation
1739 messages</quote>.
1740 </para>
1741 <para>
1742 The <command>personal</command> condition checks that the message is not a bounce message and
1743 that the current user&#x2019;s email address appears in the <emphasis>To:</emphasis> header. It also
1744 checks that the sender is not the current user or one of a number of common
1745 daemons, and that there are no header lines starting <emphasis>List-</emphasis> in the message.
1746 Finally, it checks the content of the <emphasis>Precedence:</emphasis> header line, if there is
1747 one.
1748 </para>
1749 <para>
1750 You should always use the <command>personal</command> condition when generating automatic
1751 responses. This example shows the use of <command>personal</command> in a filter file that is
1752 sending out vacation messages:
1753 </para>
1754 <literallayout class="monospaced">
1755 if personal then
1756 mail to $reply_address
1757 subject "I am on holiday"
1758 file $home/vacation/message
1759 once $home/vacation/once
1760 once_repeat 10d
1761 endif
1762 </literallayout>
1763 <para>
1764 It is tempting, when writing commands like the above, to quote the original
1765 subject in the reply. For example:
1766 </para>
1767 <literallayout class="monospaced">
1768 subject "Re: $h_subject:"
1769 </literallayout>
1770 <para>
1771 There is a danger in doing this, however. It may allow a third party to
1772 subscribe you to an opt-in mailing list, provided that the list accepts bounce
1773 messages as subscription confirmations. (Messages sent from filters are always
1774 sent as bounce messages.) Well-managed lists require a non-bounce message to
1775 confirm a subscription, so the danger is relatively small.
1776 </para>
1777 <para>
1778 If prefixes or suffixes are in use for local parts &ndash; something which depends
1779 on the configuration of Exim (see section <xref linkend="SECTmbox"/> below) &ndash; the tests
1780 for the current user are done with the full address (including the prefix and
1781 suffix, if any) as well as with the prefix and suffix removed. If the system is
1782 configured to rewrite local parts of mail addresses, for example, to rewrite
1783 <literal>dag46</literal> as <literal>Dirk.Gently</literal>, the rewritten form of the address is also used in
1784 the tests.
1785 </para>
1786 </section>
1787 <section>
1788 <title>Alias addresses for the personal condition</title>
1789 <para>
1790 It is quite common for people who have mail accounts on a number of different
1791 systems to forward all their mail to one system, and in this case a check for
1792 personal mail should test all their various mail addresses. To allow for this,
1793 the <command>personal</command> condition keyword can be followed by
1794 </para>
1795 <literallayout>
1796 <literal>alias </literal>&lt;<emphasis>address</emphasis>&gt;
1797 </literallayout>
1798 <para>
1799 any number of times, for example:
1800 </para>
1801 <literallayout class="monospaced">
1802 if personal alias smith@else.where.example
1803             alias jones@other.place.example
1804 then ...
1805 </literallayout>
1806 <para>
1807 The alias addresses are treated as alternatives to the current user&#x2019;s email
1808 address when testing the contents of header lines.
1809 </para>
1810 </section>
1811 <section>
1812 <title>Details of the personal condition</title>
1813 <para>
1814 The basic <command>personal</command> test is roughly equivalent to the following:
1815 </para>
1816 <literallayout class="monospaced">
1817 not error_message and
1818 $message_headers does not contain "\nList-Id:" and
1819 $message_headers does not contain "\nList-Help:" and
1820 $message_headers does not contain "\nList-Subscribe:" and
1821 $message_headers does not contain "\nList-Unsubscribe:" and
1822 $message_headers does not contain "\nList-Post:" and
1823 $message_headers does not contain "\nList-Owner:" and
1824 $message_headers does not contain "\nList-Archive:" and
1825 (
1826 "${if def h_auto-submitted:{present}{absent}}" is "absent" or
1827 $header_auto-submitted: is "no"
1828 ) and
1829 $header_precedence: does not contain "bulk" and
1830 $header_precedence: does not contain "list" and
1831 $header_precedence: does not contain "junk" and
1832 foranyaddress $header_to:
1833 ( $thisaddress contains "$local_part$domain" ) and
1834 not foranyaddress $header_from:
1835 (
1836 $thisaddress contains "$local_part@$domain" or
1837 $thisaddress contains "server@" or
1838 $thisaddress contains "daemon@" or
1839 $thisaddress contains "root@" or
1840 $thisaddress contains "listserv@" or
1841 $thisaddress contains "majordomo@" or
1842 $thisaddress contains "-request@" or
1843 $thisaddress matches  "^owner-[^@]+@"
1844 )
1845 </literallayout>
1846 <para>
1847 The variable <varname>$local_part</varname> contains the local part of the mail address of
1848 the user whose filter file is being run &ndash; it is normally your login id. The
1849 <varname>$domain</varname> variable contains the mail domain. As explained above, if aliases
1850 or rewriting are defined, or if prefixes or suffixes are in use, the tests for
1851 the current user are also done with alternative addresses.
1852 </para>
1853 </section>
1854 <section>
1855 <title>Testing delivery status</title>
1856 <para>
1857 There are two conditions that are intended mainly for use in system filter
1858 files, but which are available in users&#x2019; filter files as well. The condition
1859 <command>first_delivery</command> is true if this is the first process that is attempting to
1860 deliver the message, and false otherwise. This indicator is not reset until the
1861 first delivery process successfully terminates; if there is a crash or a power
1862 failure (for example), the next delivery attempt is also a <quote>first delivery</quote>.
1863 </para>
1864 <para>
1865 In a user filter file <command>first_delivery</command> will be false if there was previously
1866 an error in the filter, or if a delivery for the user failed owing to, for
1867 example, a quota error, or if forwarding to a remote address was deferred for
1868 some reason.
1869 </para>
1870 <para>
1871 The condition <command>manually_thawed</command> is true if the message was <quote>frozen</quote> for
1872 some reason, and was subsequently released by the system administrator. It is
1873 unlikely to be of use in users&#x2019; filter files.
1874 </para>
1875 </section>
1876 <section id="SECTmbox">
1877 <title>Multiple personal mailboxes</title>
1878 <para>
1879 The system administrator can configure Exim so that users can set up variants
1880 on their email addresses and handle them separately. Consult your system
1881 administrator or local documentation to see if this facility is enabled on your
1882 system, and if so, what the details are.
1883 </para>
1884 <para>
1885 The facility involves the use of a prefix or a suffix on an email address. For
1886 example, all mail addressed to <emphasis>lg303-</emphasis>&lt;<emphasis>something</emphasis>&gt; would be the property
1887 of user <emphasis>lg303</emphasis>, who could determine how it was to be handled, depending on
1888 the value of &lt;<emphasis>something</emphasis>&gt;.
1889 </para>
1890 <para>
1891 There are two possible ways in which this can be set up. The first possibility
1892 is the use of multiple <filename>.forward</filename> files. In this case, mail to <emphasis>lg303-foo</emphasis>,
1893 for example, is handled by looking for a file called <filename>.forward-foo</filename> in
1894 <emphasis>lg303</emphasis>&#x2019;s home directory. If such a file does not exist, delivery fails
1895 and the message is returned to its sender.
1896 </para>
1897 <para>
1898 The alternative approach is to pass all messages through a single <filename>.forward</filename>
1899 file, which must be a filter file so that it can distinguish between the
1900 different cases by referencing the variables <varname>$local_part_prefix</varname> or
1901 <varname>$local_part_suffix</varname>, as in the final example in section <xref linkend="SECTex"/> below.
1902 </para>
1903 <para>
1904 It is possible to configure Exim to support both schemes at once. In this case,
1905 a specific <filename>.forward-foo</filename> file is first sought; if it is not found, the basic
1906 <filename>.forward</filename> file is used.
1907 </para>
1908 <para>
1909 The <command>personal</command> test (see section <xref linkend="SECTpersonal"/>) includes prefixes and
1910 suffixes in its checking.
1911 </para>
1912 </section>
1913 <section>
1914 <title>Ignoring delivery errors</title>
1915 <para>
1916 As was explained above, filtering just sets up addresses for delivery &ndash; no
1917 deliveries are actually done while a filter file is active. If any of the
1918 generated addresses subsequently suffers a delivery failure, an error message
1919 is generated in the normal way. However, if a filter command that sets up a
1920 delivery is preceded by the word <quote>noerror</quote>, errors for that delivery,
1921 and any deliveries consequent on it (that is, from alias, forwarding, or
1922 filter files it invokes) are ignored.
1923 </para>
1924 </section>
1925 <section id="SECTex">
1926 <title>Examples of Exim filter commands</title>
1927 <para>
1928 Simple forwarding:
1929 </para>
1930 <literallayout class="monospaced">
1931 # Exim filter
1932 deliver baggins@rivendell.middle-earth.example
1933 </literallayout>
1934 <para>
1935 Vacation handling using traditional means, assuming that the <filename>.vacation.msg</filename>
1936 and other files have been set up in your home directory:
1937 </para>
1938 <literallayout class="monospaced">
1939 # Exim filter
1940 unseen pipe "/usr/ucb/vacation \"$local_part\""
1941 </literallayout>
1942 <para>
1943 Vacation handling inside Exim, having first created a file called
1944 <filename>.vacation.msg</filename> in your home directory:
1945 </para>
1946 <literallayout class="monospaced">
1947 # Exim filter
1948 if personal then vacation endif
1949 </literallayout>
1950 <para>
1951 File some messages by subject:
1952 </para>
1953 <literallayout class="monospaced">
1954 # Exim filter
1955 if $header_subject: contains "empire" or
1956 $header_subject: contains "foundation"
1957 then
1958 save $home/mail/f+e
1959 endif
1960 </literallayout>
1961 <para>
1962 Save all non-urgent messages by weekday:
1963 </para>
1964 <literallayout class="monospaced">
1965 # Exim filter
1966 if $header_subject: does not contain "urgent" and
1967 $tod_full matches "^(...),"
1968 then
1969 save $home/mail/$1
1970 endif
1971 </literallayout>
1972 <para>
1973 Throw away all mail from one site, except from postmaster:
1974 </para>
1975 <literallayout class="monospaced">
1976 # Exim filter
1977 if $reply_address contains "@spam.site.example" and
1978 $reply_address does not contain "postmaster@"
1979 then
1980 seen finish
1981 endif
1982 </literallayout>
1983 <para>
1984 Handle multiple personal mailboxes:
1985 </para>
1986 <literallayout class="monospaced">
1987 # Exim filter
1988 if $local_part_suffix is "-foo"
1989 then
1990 save $home/mail/foo
1991 elif $local_part_suffix is "-bar"
1992 then
1993 save $home/mail/bar
1994 endif
1995 </literallayout>
1996 </section>
1997 </chapter>
1998
1999 </book>