Imported all available docbook sets
[exim-website.git] / docbook / 4.61 / 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>04 April 2006</date>
8 <author><firstname>Philip</firstname><surname>Hazel</surname></author>
9 <authorinitials>PH</authorinitials>
10 <revhistory><revision>
11   <revnumber>4.61</revnumber>
12   <date>04 April 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.61.
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. In conventional
989 configurations, this variable is normally set in a user filter to the user&#x2019;s
990 home directory, but the system administrator may set it to some other path. In
991 some configurations, <varname>$home</varname> may be unset, in which case a non-absolute path
992 name may be generated. Such configurations convert this to an absolute path
993 when the delivery takes place. In a system filter, <varname>$home</varname> is never set.
994 </para>
995 <para>
996 The user must of course have permission to write to the file, and the writing
997 of the file takes place in a process that is running as the user, under the
998 user&#x2019;s primary group. Any secondary groups to which the user may belong are not
999 normally taken into account, though the system administrator can configure Exim
1000 to set them up. In addition, the ability to use this command at all is
1001 controlled by the system administrator &ndash; it may be forbidden on some systems.
1002 </para>
1003 <para>
1004 An optional mode value may be given after the file name. The value for the mode
1005 is interpreted as an octal number, even if it does not begin with a zero. For
1006 example:
1007 </para>
1008 <literallayout class="monospaced">
1009 save /some/folder 640
1010 </literallayout>
1011 <para>
1012 This makes it possible for users to override the system-wide mode setting for
1013 file deliveries, which is normally 600. If an existing file does not have the
1014 correct mode, it is changed.
1015 </para>
1016 <para>
1017 An alternative form of delivery may be enabled on your system, in which each
1018 message is delivered into a new file in a given directory. If this is the case,
1019 this functionality can be requested by giving the directory name terminated by
1020 a slash after the <command>save</command> command, for example
1021 </para>
1022 <literallayout class="monospaced">
1023 save separated/messages/
1024 </literallayout>
1025 <para>
1026 There are several different formats for such deliveries; check with your system
1027 administrator or local documentation to find out which (if any) are available
1028 on your system. If this functionality is not enabled, the use of a path name
1029 ending in a slash causes an error.
1030 </para>
1031 </section>
1032 <section id="SECTpipe">
1033 <title>The pipe command</title>
1034 <literallayout>
1035 <literal>     pipe </literal>&lt;<emphasis>command</emphasis>&gt;
1036 <literal>e.g. pipe "$home/bin/countmail $sender_address"</literal>
1037 </literallayout>
1038 <para>
1039 This command specifies that the message is to be delivered to the specified
1040 command using a pipe. The delivery that it sets up is significant unless the
1041 command is preceded by <quote>unseen</quote> (see section <xref linkend="SECTsigdel"/>). Remember,
1042 however, that no deliveries are done while the filter is being processed. All
1043 deliveries happen later on. Therefore, the result of running the pipe is not
1044 available to the filter.
1045 </para>
1046 <para>
1047 When the deliveries are done, a separate process is run, and a copy of the
1048 message is passed on its standard input. The process runs as the user, under
1049 the user&#x2019;s primary group. Any secondary groups to which the user may belong are
1050 not normally taken into account, though the system administrator can configure
1051 Exim to set them up. More than one <command>pipe</command> command may appear; each one causes
1052 a copy of the message to be written to its argument pipe, provided they are
1053 different (duplicate <command>pipe</command> commands are ignored).
1054 </para>
1055 <para>
1056 When the time comes to transport the message, the command supplied to <command>pipe</command>
1057 is split up by Exim into a command name and a number of arguments. These are
1058 delimited by white space except for arguments enclosed in double quotes, in
1059 which case backslash is interpreted as an escape, or in single quotes, in which
1060 case no escaping is recognized. Note that as the whole command is normally
1061 supplied in double quotes, a second level of quoting is required for internal
1062 double quotes. For example:
1063 </para>
1064 <literallayout class="monospaced">
1065 pipe "$home/myscript \"size is $message_size\""
1066 </literallayout>
1067 <para>
1068 String expansion is performed on the separate components after the line has
1069 been split up, and the command is then run directly by Exim; it is not run
1070 under a shell. Therefore, substitution cannot change the number of arguments,
1071 nor can quotes, backslashes or other shell metacharacters in variables cause
1072 confusion.
1073 </para>
1074 <para>
1075 Documentation for some programs that are normally run via this kind of pipe
1076 often suggest that the command should start with
1077 </para>
1078 <literallayout class="monospaced">
1079 IFS=" "
1080 </literallayout>
1081 <para>
1082 This is a shell command, and should <emphasis>not</emphasis> be present in Exim filter files,
1083 since it does not normally run the command under a shell.
1084 </para>
1085 <para>
1086 However, there is an option that the administrator can set to cause a shell to
1087 be used. In this case, the entire command is expanded as a single string and
1088 passed to the shell for interpretation. It is recommended that this be avoided
1089 if at all possible, since it can lead to problems when inserted variables
1090 contain shell metacharacters.
1091 </para>
1092 <para>
1093 The default PATH set up for the command is determined by the system
1094 administrator, usually containing at least <filename>/bin</filename> and <filename>/usr/bin</filename> so that
1095 common commands are available without having to specify an absolute file name.
1096 However, it is possible for the system administrator to restrict the pipe
1097 facility so that the command name must not contain any / characters, and must
1098 be found in one of the directories in the configured PATH. It is also possible
1099 for the system administrator to lock out the use of the <command>pipe</command> command
1100 altogether.
1101 </para>
1102 <para>
1103 When the command is run, a number of environment variables are set up. The
1104 complete list for pipe deliveries may be found in the Exim reference manual.
1105 Those that may be useful for pipe deliveries from user filter files are:
1106 </para>
1107 <literallayout>
1108 <literal>DOMAIN            </literal>   the domain of the address
1109 <literal>HOME              </literal>   your home directory
1110 <literal>LOCAL_PART        </literal>   see below
1111 <literal>LOCAL_PART_PREFIX </literal>   see below
1112 <literal>LOCAL_PART_SUFFIX </literal>   see below
1113 <literal>LOGNAME           </literal>   your login name
1114 <literal>MESSAGE_ID        </literal>   the unique id of the message
1115 <literal>PATH              </literal>   the command search path
1116 <literal>RECIPIENT         </literal>   the complete recipient address
1117 <literal>SENDER            </literal>   the sender of the message
1118 <literal>SHELL             </literal>   <literal>/bin/sh</literal>
1119 <literal>USER              </literal>   see below
1120 </literallayout>
1121 <para>
1122 LOCAL_PART, LOGNAME, and USER are all set to the same value, namely, your login
1123 id. LOCAL_PART_PREFIX and LOCAL_PART_SUFFIX may be set if Exim is configured to
1124 recognize prefixes or suffixes in the local parts of addresses. For example, a
1125 message addressed to <emphasis>pat-suf2@domain.example</emphasis> may cause the filter for user
1126 <emphasis>pat</emphasis> to be run. If this sets up a pipe delivery, LOCAL_PART_SUFFIX is
1127 <literal>-suf2</literal> when the pipe command runs. The system administrator has to configure
1128 Exim specially for this feature to be available.
1129 </para>
1130 <para>
1131 If you run a command that is a shell script, be very careful in your use of
1132 data from the incoming message in the commands in your script. RFC 2822 is very
1133 generous in the characters that are permitted to appear in mail addresses, and
1134 in particular, an address may begin with a vertical bar or a slash. For this
1135 reason you should always use quotes round any arguments that involve data from
1136 the message, like this:
1137 </para>
1138 <literallayout class="monospaced">
1139 /some/command '$SENDER'
1140 </literallayout>
1141 <para>
1142 so that inserted shell meta-characters do not cause unwanted effects.
1143 </para>
1144 <para>
1145 Remember that, as was explained earlier, the pipe command is not run at the
1146 time the filter file is interpreted. The filter just defines what deliveries
1147 are required for one particular addressee of a message. The deliveries
1148 themselves happen later, once Exim has decided everything that needs to be done
1149 for the message.
1150 </para>
1151 <para>
1152 A consequence of this is that you cannot inspect the return code from the pipe
1153 command from within the filter. Nevertheless, the code returned by the command
1154 is important, because Exim uses it to decide whether the delivery has succeeded
1155 or failed.
1156 </para>
1157 <para>
1158 The command should return a zero completion code if all has gone well. Most
1159 non-zero codes are treated by Exim as indicating a failure of the pipe. This is
1160 treated as a delivery failure, causing the message to be returned to its
1161 sender. However, there are some completion codes that are treated as temporary
1162 errors. The message remains on Exim&#x2019;s spool disk, and the delivery is tried
1163 again later, though it will ultimately time out if the delivery failures go on
1164 too long. The completion codes to which this applies can be specified by the
1165 system administrator; the default values are 73 and 75.
1166 </para>
1167 <para>
1168 The pipe command should not normally write anything to its standard output or
1169 standard error file descriptors. If it does, whatever is written is normally
1170 returned to the sender of the message as a delivery error, though this action
1171 can be varied by the system administrator.
1172 </para>
1173 </section>
1174 <section id="SECTmail">
1175 <title>Mail commands</title>
1176 <para>
1177 There are two commands that cause the creation of a new mail message, neither
1178 of which count as a significant delivery unless the command is preceded by the
1179 word <quote>seen</quote> (see section <xref linkend="SECTsigdel"/>). This is a powerful facility, but
1180 it should be used with care, because of the danger of creating infinite
1181 sequences of messages. The system administrator can forbid the use of these
1182 commands altogether.
1183 </para>
1184 <para>
1185 To help prevent runaway message sequences, these commands have no effect when
1186 the incoming message is a bounce (delivery error) message, and messages sent by
1187 this means are treated as if they were reporting delivery errors. Thus, they
1188 should never themselves cause a bounce message to be returned. The basic
1189 mail-sending command is
1190 </para>
1191 <literallayout>
1192 <literal>mail [to </literal>&lt;<emphasis>address-list</emphasis>&gt;<literal>]</literal>
1193 <literal>     [cc </literal>&lt;<emphasis>address-list</emphasis>&gt;<literal>]</literal>
1194 <literal>     [bcc </literal>&lt;<emphasis>address-list</emphasis>&gt;<literal>]</literal>
1195 <literal>     [from </literal>&lt;<emphasis>address</emphasis>&gt;<literal>]</literal>
1196 <literal>     [reply_to </literal>&lt;<emphasis>address</emphasis>&gt;<literal>]</literal>
1197 <literal>     [subject </literal>&lt;<emphasis>text</emphasis>&gt;<literal>]</literal>
1198 <literal>     [extra_headers </literal>&lt;<emphasis>text</emphasis>&gt;<literal>]</literal>
1199 <literal>     [text </literal>&lt;<emphasis>text</emphasis>&gt;<literal>]</literal>
1200 <literal>     [[expand] file </literal>&lt;<emphasis>filename</emphasis>&gt;<literal>]</literal>
1201 <literal>     [return message]</literal>
1202 <literal>     [log </literal>&lt;<emphasis>log file name</emphasis>&gt;<literal>]</literal>
1203 <literal>     [once </literal>&lt;<emphasis>note file name</emphasis>&gt;<literal>]</literal>
1204 <literal>     [once_repeat </literal>&lt;<emphasis>time interval</emphasis>&gt;<literal>]</literal>
1205
1206 <literal>e.g. mail text "Your message about $h_subject: has been received"</literal>
1207 </literallayout>
1208 <para>
1209 Each &lt;<emphasis>address-list</emphasis>&gt; can contain a number of addresses, separated by commas,
1210 in the format of a <emphasis>To:</emphasis> or <emphasis>Cc:</emphasis> header line. In fact, the text you supply
1211 here is copied exactly into the appropriate header line. It may contain
1212 additional information as well as email addresses. For example:
1213 </para>
1214 <literallayout class="monospaced">
1215 mail to "Julius Caesar &lt;jc@rome.example&gt;, \
1216          &lt;ma@rome.example&gt; (Mark A.)"
1217 </literallayout>
1218 <para>
1219 Similarly, the texts supplied for <option>from</option> and <option>reply_to</option> are copied into
1220 their respective header lines.
1221 </para>
1222 <para>
1223 As a convenience for use in one common case, there is also a command called
1224 <command>vacation</command>. It behaves in the same way as <command>mail</command>, except that the defaults
1225 for the <option>subject</option>, <option>file</option>, <option>log</option>, <option>once</option>, and <option>once_repeat</option> options
1226 are
1227 </para>
1228 <literallayout class="monospaced">
1229 subject "On vacation"
1230 expand file .vacation.msg
1231 log  .vacation.log
1232 once .vacation
1233 once_repeat 7d
1234 </literallayout>
1235 <para>
1236 respectively. These are the same file names and repeat period used by the
1237 traditional Unix <command>vacation</command> command. The defaults can be overridden by
1238 explicit settings, but if a file name is given its contents are expanded only
1239 if explicitly requested.
1240 </para>
1241 <para>
1242 <emphasis role="bold">Warning</emphasis>: The <command>vacation</command> command should always be used conditionally,
1243 subject to at least the <command>personal</command> condition (see section <xref linkend="SECTpersonal"/>
1244 below) so as not to send automatic replies to non-personal messages from
1245 mailing lists or elsewhere. Sending an automatic response to a mailing list or
1246 a mailing list manager is an Internet Sin.
1247 </para>
1248 <para>
1249 For both commands, the key/value argument pairs can appear in any order. At
1250 least one of <option>text</option> or <option>file</option> must appear (except with <command>vacation</command>, where
1251 there is a default for <option>file</option>); if both are present, the text string appears
1252 first in the message. If <option>expand</option> precedes <option>file</option>, each line of the file is
1253 subject to string expansion before it is included in the message.
1254 </para>
1255 <para>
1256 Several lines of text can be supplied to <option>text</option> by including the escape
1257 sequence <quote>\n</quote> in the string wherever a newline is required. If the command is
1258 output during filter file testing, newlines in the text are shown as <quote>\n</quote>.
1259 </para>
1260 <para>
1261 Note that the keyword for creating a <emphasis>Reply-To:</emphasis> header is <option>reply_to</option>,
1262 because Exim keywords may contain underscores, but not hyphens. If the <option>from</option>
1263 keyword is present and the given address does not match the user who owns the
1264 forward file, Exim normally adds a <emphasis>Sender:</emphasis> header to the message, though it
1265 can be configured not to do this.
1266 </para>
1267 <para>
1268 The <option>extra_headers</option> keyword allows you to add custom header lines to the
1269 message. The text supplied must be one or more syntactically valid RFC 2822
1270 header lines. You can use <quote>\n</quote> within quoted text to specify newlines between
1271 headers, and also to define continued header lines. For example:
1272 </para>
1273 <literallayout class="monospaced">
1274 extra_headers "h1: first\nh2: second\n continued\nh3: third"
1275 </literallayout>
1276 <para>
1277 No newline should appear at the end of the final header line.
1278 </para>
1279 <para>
1280 If no <option>to</option> argument appears, the message is sent to the address in the
1281 <varname>$reply_address</varname> variable (see section <xref linkend="SECTfilterstringexpansion"/> above).
1282 An <emphasis>In-Reply-To:</emphasis> header is automatically included in the created message,
1283 giving a reference to the message identification of the incoming message.
1284 </para>
1285 <para>
1286 If <option>return message</option> is specified, the incoming message that caused the filter
1287 file to be run is added to the end of the message, subject to a maximum size
1288 limitation.
1289 </para>
1290 <para>
1291 If a log file is specified, a line is added to it for each message sent.
1292 </para>
1293 <para>
1294 If a <option>once</option> file is specified, it is used to hold a database for remembering
1295 who has received a message, and no more than one message is ever sent to any
1296 particular address, unless <option>once_repeat</option> is set. This specifies a time
1297 interval after which another copy of the message is sent. The interval is
1298 specified as a sequence of numbers, each followed by the initial letter of one
1299 of <quote>seconds</quote>, <quote>minutes</quote>, <quote>hours</quote>, <quote>days</quote>, or <quote>weeks</quote>. For example,
1300 </para>
1301 <literallayout class="monospaced">
1302 once_repeat 5d4h
1303 </literallayout>
1304 <para>
1305 causes a new message to be sent if at least 5 days and 4 hours have elapsed
1306 since the last one was sent. There must be no white space in a time interval.
1307 </para>
1308 <para>
1309 Commonly, the file name specified for <option>once</option> is used as the base name for
1310 direct-access (DBM) file operations. There are a number of different DBM
1311 libraries in existence. Some operating systems provide one as a default, but
1312 even in this case a different one may have been used when building Exim. With
1313 some DBM libraries, specifying <option>once</option> results in two files being created,
1314 with the suffixes <filename>.dir</filename> and <filename>.pag</filename> being added to the given name. With
1315 some others a single file with the suffix <filename>.db</filename> is used, or the name is used
1316 unchanged.
1317 </para>
1318 <para>
1319 Using a DBM file for implementing the <option>once</option> feature means that the file
1320 grows as large as necessary. This is not usually a problem, but some system
1321 administrators want to put a limit on it. The facility can be configured not to
1322 use a DBM file, but instead, to use a regular file with a maximum size. The
1323 data in such a file is searched sequentially, and if the file fills up, the
1324 oldest entry is deleted to make way for a new one. This means that some
1325 correspondents may receive a second copy of the message after an unpredictable
1326 interval. Consult your local information to see if your system is configured
1327 this way.
1328 </para>
1329 <para>
1330 More than one <command>mail</command> or <command>vacation</command> command may be obeyed in a single filter
1331 run; they are all honoured, even when they are to the same recipient.
1332 </para>
1333 </section>
1334 <section id="SECTlog">
1335 <title>Logging commands</title>
1336 <para>
1337 A log can be kept of actions taken by a filter file. This facility is normally
1338 available in conventional configurations, but there are some situations where
1339 it might not be. Also, the system administrator may choose to disable it. Check
1340 your local information if in doubt.
1341 </para>
1342 <para>
1343 Logging takes place while the filter file is being interpreted. It does not
1344 queue up for later like the delivery commands. The reason for this is so that a
1345 log file need be opened only once for several write operations. There are two
1346 commands, neither of which constitutes a significant delivery. The first
1347 defines a file to which logging output is subsequently written:
1348 </para>
1349 <literallayout>
1350 <literal>     logfile </literal>&lt;<emphasis>file name</emphasis>&gt;
1351 <literal>e.g. logfile $home/filter.log</literal>
1352 </literallayout>
1353 <para>
1354 The file name must be fully qualified. You can use <varname>$home</varname>, as in this
1355 example, to refer to your home directory. The file name may optionally be
1356 followed by a mode for the file, which is used if the file has to be created.
1357 For example,
1358 </para>
1359 <literallayout class="monospaced">
1360 logfile $home/filter.log 0644
1361 </literallayout>
1362 <para>
1363 The number is interpreted as octal, even if it does not begin with a zero.
1364 The default for the mode is 600. It is suggested that the <command>logfile</command> command
1365 normally appear as the first command in a filter file. Once a log file has
1366 been obeyed, the <command>logwrite</command> command can be used to write to it:
1367 </para>
1368 <literallayout>
1369 <literal>     logwrite "</literal>&lt;<emphasis>some text string</emphasis>&gt;<literal>"</literal>
1370 <literal>e.g. logwrite "$tod_log $message_id processed"</literal>
1371 </literallayout>
1372 <para>
1373 It is possible to have more than one <command>logfile</command> command, to specify writing to
1374 different log files in different circumstances. Writing takes place at the end
1375 of the file, and a newline character is added to the end of each string if
1376 there isn&#x2019;t one already there. Newlines can be put in the middle of the string
1377 by using the <quote>\n</quote> escape sequence. Lines from simultaneous deliveries may get
1378 interleaved in the file, as there is no interlocking, so you should plan your
1379 logging with this in mind. However, data should not get lost.
1380 </para>
1381 </section>
1382 <section id="SECTfinish">
1383 <title>The finish command</title>
1384 <para>
1385 The command <command>finish</command>, which has no arguments, causes Exim to stop
1386 interpreting the filter file. This is not a significant action unless preceded
1387 by <quote>seen</quote>. A filter file containing only <quote>seen finish</quote> is a black hole.
1388 </para>
1389 </section>
1390 <section id="SECTtestprint">
1391 <title>The testprint command</title>
1392 <para>
1393 It is sometimes helpful to be able to print out the values of variables when
1394 testing filter files. The command
1395 </para>
1396 <literallayout>
1397 <literal>     testprint </literal>&lt;<emphasis>text</emphasis>&gt;
1398 <literal>e.g. testprint "home=$home reply_address=$reply_address"</literal>
1399 </literallayout>
1400 <para>
1401 does nothing when mail is being delivered. However, when the filtering code is
1402 being tested by means of the <option>-bf</option> option (see section <xref linkend="SECTtesting"/>
1403 above), the value of the string is written to the standard output.
1404 </para>
1405 </section>
1406 <section id="SECTfail">
1407 <title>The fail command</title>
1408 <para>
1409 When Exim&#x2019;s filtering facilities are being used as a system filter, the
1410 <command>fail</command> command is available, to force delivery failure. Because this command
1411 is normally usable only by the system administrator, and not enabled for use by
1412 ordinary users, it is described in more detail in the main Exim specification
1413 rather than in this document.
1414 </para>
1415 </section>
1416 <section id="SECTfreeze">
1417 <title>The freeze command</title>
1418 <para>
1419 When Exim&#x2019;s filtering facilities are being used as a system filter, the
1420 <command>freeze</command> command is available, to freeze a message on the queue. Because this
1421 command is normally usable only by the system administrator, and not enabled
1422 for use by ordinary users, it is described in more detail in the main Exim
1423 specification rather than in this document.
1424 </para>
1425 </section>
1426 <section id="SECTheaders">
1427 <title>The headers command</title>
1428 <para>
1429 The <command>headers</command> command can be used to change the target character set that is
1430 used when translating the contents of encoded header lines for insertion by the
1431 <varname>$header_</varname> mechanism (see section <xref linkend="SECTheadervariables"/> above). The
1432 default can be set in the Exim configuration; if not specified, ISO-8859-1 is
1433 used. The only currently supported format for the <command>headers</command> command in user
1434 filters is as in this example:
1435 </para>
1436 <literallayout class="monospaced">
1437 headers charset "UTF-8"
1438 </literallayout>
1439 <para>
1440 That is, <command>headers</command> is followed by the word <quote>charset</quote> and then the name of a
1441 character set. This particular example would be useful if you wanted to compare
1442 the contents of a header to a UTF-8 string.
1443 </para>
1444 <para>
1445 In system filter files, the <command>headers</command> command can be used to add or remove
1446 header lines from the message. These features are described in the main Exim
1447 specification.
1448 </para>
1449 </section>
1450 <section id="SECTif">
1451 <title>Obeying commands conditionally</title>
1452 <para>
1453 Most of the power of filtering comes from the ability to test conditions and
1454 obey different commands depending on the outcome. The <command>if</command> command is used to
1455 specify conditional execution, and its general form is
1456 </para>
1457 <literallayout>
1458 <literal>if    </literal>&lt;<emphasis>condition</emphasis>&gt;
1459 <literal>then  </literal>&lt;<emphasis>commands</emphasis>&gt;
1460 <literal>elif  </literal>&lt;<emphasis>condition</emphasis>&gt;
1461 <literal>then  </literal>&lt;<emphasis>commands</emphasis>&gt;
1462 <literal>else  </literal>&lt;<emphasis>commands</emphasis>&gt;
1463 <literal>endif</literal>
1464 </literallayout>
1465 <para>
1466 There may be any number of <command>elif</command> and <command>then</command> sections (including none) and
1467 the <command>else</command> section is also optional. Any number of commands, including nested
1468 <command>if</command> commands, may appear in any of the &lt;<emphasis>commands</emphasis>&gt; sections.
1469 </para>
1470 <para>
1471 Conditions can be combined by using the words <command>and</command> and <command>or</command>, and round
1472 brackets (parentheses) can be used to specify how several conditions are to
1473 combine. Without brackets, <command>and</command> is more binding than <command>or</command>. For example:
1474 </para>
1475 <literallayout class="monospaced">
1476 if
1477 $h_subject: contains "Make money" or
1478 $h_precedence: is "junk" or
1479 ($h_sender: matches ^\\d{8}@ and not personal) or
1480 $message_body contains "this is not spam"
1481 then
1482 seen finish
1483 endif
1484 </literallayout>
1485 <para>
1486 A condition can be preceded by <command>not</command> to negate it, and there are also some
1487 negative forms of condition that are more English-like.
1488 </para>
1489 </section>
1490 <section>
1491 <title>String testing conditions</title>
1492 <para>
1493 There are a number of conditions that operate on text strings, using the words
1494 <quote>begins</quote>, <quote>ends</quote>, <quote>is</quote>, <quote>contains</quote> and <quote>matches</quote>. If you want to
1495 apply the same test to more than one header line, you can easily concatenate
1496 them into a single string for testing, as in this example:
1497 </para>
1498 <literallayout class="monospaced">
1499 if "$h_to:, $h_cc:" contains me@domain.example then ...
1500 </literallayout>
1501 <para>
1502 If a string-testing condition name is written in lower case, the testing
1503 of letters is done without regard to case; if it is written in upper case
1504 (for example, <quote>CONTAINS</quote>), the case of letters is taken into account.
1505 </para>
1506 <literallayout>
1507 <literal>     </literal>&lt;<emphasis>text1</emphasis>&gt;<literal> begins </literal>&lt;<emphasis>text2</emphasis>&gt;
1508 <literal>     </literal>&lt;<emphasis>text1</emphasis>&gt;<literal> does not begin </literal>&lt;<emphasis>text2</emphasis>&gt;
1509 <literal>e.g. $header_from: begins "Friend@"</literal>
1510 </literallayout>
1511 <para>
1512 A <quote>begins</quote> test checks for the presence of the second string at the start of
1513 the first, both strings having been expanded.
1514 </para>
1515 <literallayout>
1516 <literal>     </literal>&lt;<emphasis>text1</emphasis>&gt;<literal> ends </literal>&lt;<emphasis>text2</emphasis>&gt;
1517 <literal>     </literal>&lt;<emphasis>text1</emphasis>&gt;<literal> does not end </literal>&lt;<emphasis>text2</emphasis>&gt;
1518 <literal>e.g. $header_from: ends "public.com.example"</literal>
1519 </literallayout>
1520 <para>
1521 An <quote>ends</quote> test checks for the presence of the second string at the end of
1522 the first, both strings having been expanded.
1523 </para>
1524 <literallayout>
1525 <literal>     </literal>&lt;<emphasis>text1</emphasis>&gt;<literal> is </literal>&lt;<emphasis>text2</emphasis>&gt;
1526 <literal>     </literal>&lt;<emphasis>text1</emphasis>&gt;<literal> is not </literal>&lt;<emphasis>text2</emphasis>&gt;
1527 <literal>e.g. $local_part_suffix is "-foo"</literal>
1528 </literallayout>
1529 <para>
1530 An <quote>is</quote> test does an exact match between the strings, having first expanded
1531 both strings.
1532 </para>
1533 <literallayout>
1534 <literal>     </literal>&lt;<emphasis>text1</emphasis>&gt;<literal> contains </literal>&lt;<emphasis>text2</emphasis>&gt;
1535 <literal>     </literal>&lt;<emphasis>text1</emphasis>&gt;<literal> does not contain </literal>&lt;<emphasis>text2</emphasis>&gt;
1536 <literal>e.g. $header_subject: contains "evolution"</literal>
1537 </literallayout>
1538 <para>
1539 A <quote>contains</quote> test does a partial string match, having expanded both strings.
1540 </para>
1541 <literallayout>
1542 <literal>     </literal>&lt;<emphasis>text1</emphasis>&gt;<literal> matches </literal>&lt;<emphasis>text2</emphasis>&gt;
1543 <literal>     </literal>&lt;<emphasis>text1</emphasis>&gt;<literal> does not match </literal>&lt;<emphasis>text2</emphasis>&gt;
1544 <literal>e.g. $sender_address matches "(bill|john)@"</literal>
1545 </literallayout>
1546 <para>
1547 For a <quote>matches</quote> test, after expansion of both strings, the second one is
1548 interpreted as a regular expression. Exim uses the PCRE regular expression
1549 library, which provides regular expressions that are compatible with Perl.
1550 </para>
1551 <para>
1552 The match succeeds if the regular expression matches any part of the first
1553 string. If you want a regular expression to match only at the start or end of
1554 the subject string, you must encode that requirement explicitly, using the
1555 <literal>^</literal> or <literal>$</literal> metacharacters. The above example, which is not so constrained,
1556 matches all these addresses:
1557 </para>
1558 <literallayout class="monospaced">
1559 bill@test.example
1560 john@some.example
1561 spoonbill@example.com
1562 littlejohn@example.com
1563 </literallayout>
1564 <para>
1565 To match only the first two, you could use this:
1566 </para>
1567 <literallayout class="monospaced">
1568 if $sender_address matches "^(bill|john)@" then ...
1569 </literallayout>
1570 <para>
1571 Care must be taken if you need a backslash in a regular expression, because
1572 backslashes are interpreted as escape characters both by the string expansion
1573 code and by Exim&#x2019;s normal processing of strings in quotes. For example, if you
1574 want to test the sender address for a domain ending in <emphasis>.com</emphasis> the regular
1575 expression is
1576 </para>
1577 <literallayout class="monospaced">
1578 \.com$
1579 </literallayout>
1580 <para>
1581 The backslash and dollar sign in that expression have to be escaped when used
1582 in a filter command, as otherwise they would be interpreted by the expansion
1583 code. Thus, what you actually write is
1584 </para>
1585 <literallayout class="monospaced">
1586 if $sender_address matches \\.com\$
1587 </literallayout>
1588 <para>
1589 An alternative way of handling this is to make use of the <literal>\N</literal> expansion
1590 flag for suppressing expansion:
1591 </para>
1592 <literallayout class="monospaced">
1593 if $sender_address matches \N\.com$\N
1594 </literallayout>
1595 <para>
1596 Everything between the two occurrences of <literal>\N</literal> is copied without change by
1597 the string expander (and in fact you do not need the final one, because it is
1598 at the end of the string). If the regular expression is given in quotes
1599 (mandatory only if it contains white space) you have to write either
1600 </para>
1601 <literallayout class="monospaced">
1602 if $sender_address matches "\\\\.com\\$"
1603 </literallayout>
1604 <para>
1605 or
1606 </para>
1607 <literallayout class="monospaced">
1608 if $sender_address matches "\\N\\.com$\\N"
1609 </literallayout>
1610 <para>
1611 If the regular expression contains bracketed sub-expressions, numeric
1612 variable substitutions such as <varname>$1</varname> can be used in the subsequent actions
1613 after a successful match. If the match fails, the values of the numeric
1614 variables remain unchanged. Previous values are not restored after <command>endif</command>.
1615 In other words, only one set of values is ever available. If the condition
1616 contains several sub-conditions connected by <command>and</command> or <command>or</command>, it is the
1617 strings extracted from the last successful match that are available in
1618 subsequent actions. Numeric variables from any one sub-condition are also
1619 available for use in subsequent sub-conditions, because string expansion of a
1620 condition occurs just before it is tested.
1621 </para>
1622 </section>
1623 <section>
1624 <title>Numeric testing conditions</title>
1625 <para>
1626 The following conditions are available for performing numerical tests:
1627 </para>
1628 <literallayout>
1629 <literal>     </literal>&lt;<emphasis>number1</emphasis>&gt;<literal> is above </literal>&lt;<emphasis>number2</emphasis>&gt;
1630 <literal>     </literal>&lt;<emphasis>number1</emphasis>&gt;<literal> is not above </literal>&lt;<emphasis>number2</emphasis>&gt;
1631 <literal>     </literal>&lt;<emphasis>number1</emphasis>&gt;<literal> is below </literal>&lt;<emphasis>number2</emphasis>&gt;
1632 <literal>     </literal>&lt;<emphasis>number1</emphasis>&gt;<literal> is not below </literal>&lt;<emphasis>number2</emphasis>&gt;
1633 <literal>e.g. $message_size is not above 10k</literal>
1634 </literallayout>
1635 <para>
1636 The &lt;<emphasis>number</emphasis>&gt; arguments must expand to strings of digits, optionally
1637 followed by one of the letters K or M (upper case or lower case) which cause
1638 multiplication by 1024 and 1024x1024 respectively.
1639 </para>
1640 </section>
1641 <section>
1642 <title>Testing for significant deliveries</title>
1643 <para>
1644 You can use the <command>delivered</command> condition to test whether or not any previously
1645 obeyed filter commands have set up a significant delivery. For example:
1646 </para>
1647 <literallayout class="monospaced">
1648 if not delivered then save mail/anomalous endif
1649 </literallayout>
1650 <para>
1651 <quote>Delivered</quote> is perhaps a poor choice of name for this condition, because the
1652 message has not actually been delivered; rather, a delivery has been set up for
1653 later processing.
1654 </para>
1655 </section>
1656 <section>
1657 <title>Testing for error messages</title>
1658 <para>
1659 The condition <command>error_message</command> is true if the incoming message is a bounce
1660 (mail delivery error) message. Putting the command
1661 </para>
1662 <literallayout class="monospaced">
1663 if error_message then finish endif
1664 </literallayout>
1665 <para>
1666 at the head of your filter file is a useful insurance against things going
1667 wrong in such a way that you cannot receive delivery error reports. <emphasis role="bold">Note</emphasis>:
1668 <command>error_message</command> is a condition, not an expansion variable, and therefore is
1669 not preceded by <literal>$</literal>.
1670 </para>
1671 </section>
1672 <section>
1673 <title>Testing a list of addresses</title>
1674 <para>
1675 There is a facility for looping through a list of addresses and applying a
1676 condition to each of them. It takes the form
1677 </para>
1678 <literallayout>
1679 <literal>foranyaddress </literal>&lt;<emphasis>string</emphasis>&gt;<literal> (</literal>&lt;<emphasis>condition</emphasis>&gt;<literal>)</literal>
1680 </literallayout>
1681 <para>
1682 where &lt;<emphasis>string</emphasis>&gt; is interpreted as a list of RFC 2822 addresses, as in a
1683 typical header line, and &lt;<emphasis>condition</emphasis>&gt; is any valid filter condition or
1684 combination of conditions. The <quote>group</quote> syntax that is defined for certain
1685 header lines that contain addresses is supported.
1686 </para>
1687 <para>
1688 The parentheses surrounding the condition are mandatory, to delimit it from
1689 possible further sub-conditions of the enclosing <command>if</command> command. Within the
1690 condition, the expansion variable <varname>$thisaddress</varname> is set to the non-comment
1691 portion of each of the addresses in the string in turn. For example, if the
1692 string is
1693 </para>
1694 <literallayout class="monospaced">
1695 B.Simpson &lt;bart@sfld.example&gt;, lisa@sfld.example (his sister)
1696 </literallayout>
1697 <para>
1698 then <varname>$thisaddress</varname> would take on the values <literal>bart@sfld.example</literal> and
1699 <literal>lisa@sfld.example</literal> in turn.
1700 </para>
1701 <para>
1702 If there are no valid addresses in the list, the whole condition is false. If
1703 the internal condition is true for any one address, the overall condition is
1704 true and the loop ends. If the internal condition is false for all addresses in
1705 the list, the overall condition is false. This example tests for the presence
1706 of an eight-digit local part in any address in a <emphasis>To:</emphasis> header:
1707 </para>
1708 <literallayout class="monospaced">
1709 if foranyaddress $h_to: ( $thisaddress matches ^\\d{8}@ ) then ...
1710 </literallayout>
1711 <para>
1712 When the overall condition is true, the value of <varname>$thisaddress</varname> in the
1713 commands that follow <command>then</command> is the last value it took on inside the loop. At
1714 the end of the <command>if</command> command, the value of <varname>$thisaddress</varname> is reset to what it
1715 was before. It is best to avoid the use of multiple occurrences of
1716 <command>foranyaddress</command>, nested or otherwise, in a single <command>if</command> command, if the
1717 value of <varname>$thisaddress</varname> is to be used afterwards, because it isn&#x2019;t always
1718 clear what the value will be. Nested <command>if</command> commands should be used instead.
1719 </para>
1720 <para>
1721 Header lines can be joined together if a check is to be applied to more than
1722 one of them. For example:
1723 </para>
1724 <literallayout class="monospaced">
1725 if foranyaddress $h_to:,$h_cc: ....
1726 </literallayout>
1727 <para>
1728 This scans through the addresses in both the <emphasis>To:</emphasis> and the <emphasis>Cc:</emphasis> headers.
1729 </para>
1730 </section>
1731 <section id="SECTpersonal">
1732 <title>Testing for personal mail</title>
1733 <para>
1734 A common requirement is to distinguish between incoming personal mail and mail
1735 from a mailing list, or from a robot or other automatic process (for example, a
1736 bounce message). In particular, this test is normally required for <quote>vacation
1737 messages</quote>.
1738 </para>
1739 <para>
1740 The <command>personal</command> condition checks that the message is not a bounce message and
1741 that the current user&#x2019;s email address appears in the <emphasis>To:</emphasis> header. It also
1742 checks that the sender is not the current user or one of a number of common
1743 daemons, and that there are no header lines starting <emphasis>List-</emphasis> in the message.
1744 Finally, it checks the content of the <emphasis>Precedence:</emphasis> header line, if there is
1745 one.
1746 </para>
1747 <para>
1748 You should always use the <command>personal</command> condition when generating automatic
1749 responses. This example shows the use of <command>personal</command> in a filter file that is
1750 sending out vacation messages:
1751 </para>
1752 <literallayout class="monospaced">
1753 if personal then
1754 mail to $reply_address
1755 subject "I am on holiday"
1756 file $home/vacation/message
1757 once $home/vacation/once
1758 once_repeat 10d
1759 endif
1760 </literallayout>
1761 <para>
1762 It is tempting, when writing commands like the above, to quote the original
1763 subject in the reply. For example:
1764 </para>
1765 <literallayout class="monospaced">
1766 subject "Re: $h_subject:"
1767 </literallayout>
1768 <para>
1769 There is a danger in doing this, however. It may allow a third party to
1770 subscribe you to an opt-in mailing list, provided that the list accepts bounce
1771 messages as subscription confirmations. (Messages sent from filters are always
1772 sent as bounce messages.) Well-managed lists require a non-bounce message to
1773 confirm a subscription, so the danger is relatively small.
1774 </para>
1775 <para>
1776 If prefixes or suffixes are in use for local parts &ndash; something which depends
1777 on the configuration of Exim (see section <xref linkend="SECTmbox"/> below) &ndash; the tests
1778 for the current user are done with the full address (including the prefix and
1779 suffix, if any) as well as with the prefix and suffix removed. If the system is
1780 configured to rewrite local parts of mail addresses, for example, to rewrite
1781 <literal>dag46</literal> as <literal>Dirk.Gently</literal>, the rewritten form of the address is also used in
1782 the tests.
1783 </para>
1784 </section>
1785 <section>
1786 <title>Alias addresses for the personal condition</title>
1787 <para>
1788 It is quite common for people who have mail accounts on a number of different
1789 systems to forward all their mail to one system, and in this case a check for
1790 personal mail should test all their various mail addresses. To allow for this,
1791 the <command>personal</command> condition keyword can be followed by
1792 </para>
1793 <literallayout>
1794 <literal>alias </literal>&lt;<emphasis>address</emphasis>&gt;
1795 </literallayout>
1796 <para>
1797 any number of times, for example:
1798 </para>
1799 <literallayout class="monospaced">
1800 if personal alias smith@else.where.example
1801             alias jones@other.place.example
1802 then ...
1803 </literallayout>
1804 <para>
1805 The alias addresses are treated as alternatives to the current user&#x2019;s email
1806 address when testing the contents of header lines.
1807 </para>
1808 </section>
1809 <section>
1810 <title>Details of the personal condition</title>
1811 <para>
1812 The basic <command>personal</command> test is roughly equivalent to the following:
1813 </para>
1814 <literallayout class="monospaced">
1815 not error_message and
1816 $message_headers does not contain "\nList-Id:" and
1817 $message_headers does not contain "\nList-Help:" and
1818 $message_headers does not contain "\nList-Subscribe:" and
1819 $message_headers does not contain "\nList-Unsubscribe:" and
1820 $message_headers does not contain "\nList-Post:" and
1821 $message_headers does not contain "\nList-Owner:" and
1822 $message_headers does not contain "\nList-Archive:" and
1823 (
1824 "${if def h_auto-submitted:{present}{absent}}" is "absent" or
1825 $header_auto-submitted: is "no"
1826 ) and
1827 $header_precedence: does not contain "bulk" and
1828 $header_precedence: does not contain "list" and
1829 $header_precedence: does not contain "junk" and
1830 foranyaddress $header_to:
1831 ( $thisaddress contains "$local_part$domain" ) and
1832 not foranyaddress $header_from:
1833 (
1834 $thisaddress contains "$local_partdomain" or
1835 $thisaddress contains "server" or
1836 $thisaddress contains "daemon" or
1837 $thisaddress contains "root" or
1838 $thisaddress contains "listserv" or
1839 $thisaddress contains "majordomo" or
1840 $thisaddress contains "-request" or
1841 $thisaddress matches  "^owner-[^]+"
1842 )
1843 </literallayout>
1844 <para>
1845 The variable <varname>$local_part</varname> contains the local part of the mail address of
1846 the user whose filter file is being run &ndash; it is normally your login id. The
1847 <varname>$domain</varname> variable contains the mail domain. As explained above, if aliases
1848 or rewriting are defined, or if prefixes or suffixes are in use, the tests for
1849 the current user are also done with alternative addresses.
1850 </para>
1851 </section>
1852 <section>
1853 <title>Testing delivery status</title>
1854 <para>
1855 There are two conditions that are intended mainly for use in system filter
1856 files, but which are available in users&#x2019; filter files as well. The condition
1857 <command>first_delivery</command> is true if this is the first process that is attempting to
1858 deliver the message, and false otherwise. This indicator is not reset until the
1859 first delivery process successfully terminates; if there is a crash or a power
1860 failure (for example), the next delivery attempt is also a <quote>first delivery</quote>.
1861 </para>
1862 <para>
1863 In a user filter file <command>first_delivery</command> will be false if there was previously
1864 an error in the filter, or if a delivery for the user failed owing to, for
1865 example, a quota error, or if forwarding to a remote address was deferred for
1866 some reason.
1867 </para>
1868 <para>
1869 The condition <command>manually_thawed</command> is true if the message was <quote>frozen</quote> for
1870 some reason, and was subsequently released by the system administrator. It is
1871 unlikely to be of use in users&#x2019; filter files.
1872 </para>
1873 </section>
1874 <section id="SECTmbox">
1875 <title>Multiple personal mailboxes</title>
1876 <para>
1877 The system administrator can configure Exim so that users can set up variants
1878 on their email addresses and handle them separately. Consult your system
1879 administrator or local documentation to see if this facility is enabled on your
1880 system, and if so, what the details are.
1881 </para>
1882 <para>
1883 The facility involves the use of a prefix or a suffix on an email address. For
1884 example, all mail addressed to <emphasis>lg303-</emphasis>&lt;<emphasis>something</emphasis>&gt; would be the property
1885 of user <emphasis>lg303</emphasis>, who could determine how it was to be handled, depending on
1886 the value of &lt;<emphasis>something</emphasis>&gt;.
1887 </para>
1888 <para>
1889 There are two possible ways in which this can be set up. The first possibility
1890 is the use of multiple <filename>.forward</filename> files. In this case, mail to <emphasis>lg303-foo</emphasis>,
1891 for example, is handled by looking for a file called <filename>.forward-foo</filename> in
1892 <emphasis>lg303</emphasis>&#x2019;s home directory. If such a file does not exist, delivery fails
1893 and the message is returned to its sender.
1894 </para>
1895 <para>
1896 The alternative approach is to pass all messages through a single <filename>.forward</filename>
1897 file, which must be a filter file so that it can distinguish between the
1898 different cases by referencing the variables <varname>$local_part_prefix</varname> or
1899 <varname>$local_part_suffix</varname>, as in the final example in section <xref linkend="SECTex"/> below.
1900 </para>
1901 <para>
1902 It is possible to configure Exim to support both schemes at once. In this case,
1903 a specific <filename>.forward-foo</filename> file is first sought; if it is not found, the basic
1904 <filename>.forward</filename> file is used.
1905 </para>
1906 <para>
1907 The <command>personal</command> test (see section <xref linkend="SECTpersonal"/>) includes prefixes and
1908 suffixes in its checking.
1909 </para>
1910 </section>
1911 <section>
1912 <title>Ignoring delivery errors</title>
1913 <para>
1914 As was explained above, filtering just sets up addresses for delivery &ndash; no
1915 deliveries are actually done while a filter file is active. If any of the
1916 generated addresses subsequently suffers a delivery failure, an error message
1917 is generated in the normal way. However, if a filter command that sets up a
1918 delivery is preceded by the word <quote>noerror</quote>, errors for that delivery,
1919 and any deliveries consequent on it (that is, from alias, forwarding, or
1920 filter files it invokes) are ignored.
1921 </para>
1922 </section>
1923 <section id="SECTex">
1924 <title>Examples of Exim filter commands</title>
1925 <para>
1926 Simple forwarding:
1927 </para>
1928 <literallayout class="monospaced">
1929 # Exim filter
1930 deliver baggins@rivendell.middle-earth.example
1931 </literallayout>
1932 <para>
1933 Vacation handling using traditional means, assuming that the <filename>.vacation.msg</filename>
1934 and other files have been set up in your home directory:
1935 </para>
1936 <literallayout class="monospaced">
1937 # Exim filter
1938 unseen pipe "/usr/ucb/vacation \"$local_part\""
1939 </literallayout>
1940 <para>
1941 Vacation handling inside Exim, having first created a file called
1942 <filename>.vacation.msg</filename> in your home directory:
1943 </para>
1944 <literallayout class="monospaced">
1945 # Exim filter
1946 if personal then vacation endif
1947 </literallayout>
1948 <para>
1949 File some messages by subject:
1950 </para>
1951 <literallayout class="monospaced">
1952 # Exim filter
1953 if $header_subject: contains "empire" or
1954 $header_subject: contains "foundation"
1955 then
1956 save $home/mail/f+e
1957 endif
1958 </literallayout>
1959 <para>
1960 Save all non-urgent messages by weekday:
1961 </para>
1962 <literallayout class="monospaced">
1963 # Exim filter
1964 if $header_subject: does not contain "urgent" and
1965 $tod_full matches "^(...),"
1966 then
1967 save $home/mail/$1
1968 endif
1969 </literallayout>
1970 <para>
1971 Throw away all mail from one site, except from postmaster:
1972 </para>
1973 <literallayout class="monospaced">
1974 # Exim filter
1975 if $reply_address contains "@spam.site.example" and
1976 $reply_address does not contain "postmaster@"
1977 then
1978 seen finish
1979 endif
1980 </literallayout>
1981 <para>
1982 Handle multiple personal mailboxes:
1983 </para>
1984 <literallayout class="monospaced">
1985 # Exim filter
1986 if $local_part_suffix is "-foo"
1987 then
1988 save $home/mail/foo
1989 elif $local_part_suffix is "-bar"
1990 then
1991 save $home/mail/bar
1992 endif
1993 </literallayout>
1994 </section>
1995 </chapter>
1996
1997 </book>