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