1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558
|
EXIM'S USER INTERFACE TO MAIL FILTERING
Exim is a mail transfer agent for Unix systems. This document describes the
user interface to its in-built mail filtering facility, and is copyright
(c) University of Cambridge 1998.
___________________________________________________________________________
1. Introduction
Most Unix mail transport agents (programs that deliver mail) permit
individual users to specify automatic forwarding of their mail, usually by
placing a list of forwarding addresses in a file called .forward in their
home directories. Exim extends this facility by allowing the forwarding
instructions to be a set of rules rather than just a list of addresses, in
effect providing '.forward with conditions'. Operating the set of rules is
called filtering, and the file that contains them is called a filter file.
The ability to use filtering has to be enabled by the system administrator,
and some of the individual facilities can be separately enabled or
disabled. A local document should be provided to describe exactly what has
been enabled. In the absence of this, consult your system administrator.
It is important to realize that no deliveries are actually made while a
filter file is being processed. The result of filtering is a list of
destinations to which a message should be delivered - the deliveries
themselves take place later, along with all other deliveries for the
message. This means that it is not possible to test for successful
deliveries while filtering. It also means that duplicate addresses gener-
ated by filtering are dropped, as with any other duplicate addresses.
This document describes how to use a filter file and the format of its
contents. It is intended for use by end-users. How the system administrator
can set up and control the use of filtering is described in the full Exim
specification.
2. Testing a new filter file
Filter files, especially the more complicated ones, should always be
tested, as it is easy to make mistakes. Exim provides a facility for
preliminary testing of a filter file before installing it. This tests the
syntax of the file and its basic operation, and can also be used with
ordinary .forward files.
Because a filter can do tests on the content of messages, a test message is
required. Suppose you have a new filter file called "new-filter" and a test
message called "test-message". Assuming that Exim is installed with the
conventional path name /usr/lib/sendmail, the following command can be
used:
/usr/lib/sendmail -bf new-filter <test-message
The -bf option tells Exim that the following item on the command line is
the name of a filter file which is to be tested, and the test message is
supplied on the standard input. If there are no message-dependent tests in
the filter, then an empty file can be used. A supplied message must start
with header lines or the 'From' message separator line which is found in
many multi-message folder files. Note that blank lines at the start
terminate the header lines. A warning is given if no headers are read.
The result of running this command, provided no errors are detected in the
filter file, is a list of the actions that Exim would try to take if
presented with the message for real. For example, the output
Deliver message to: gulliver@lilliput.fict.book
Save message to: /home/lemuel/mail/archive
means that one copy of the message would be sent to
gulliver@lilliput.fict.book, and another would be added to the file
/home/lemuel/mail/archive, if all went well.
The actions themselves are not attempted while testing a filter file in
this way; there is no check, for example, that any forwarding addresses are
valid. If you want to know why a particular action is being taken, add the
-v option to the command. This causes Exim to output the results of any
conditional tests and to indent its output according to the depth if
nesting of if commands. Further additional output from a filter test can be
generated by the testprint command, which is described below.
When Exim is outputting a list of the actions it would take, if any text
strings are included in the output, non-printing characters therein are
converted to escape sequences. In particular, if any text string contains a
newline character, this is shown as '\n' in the testing output.
When testing a filter in this way, Exim makes up an 'envelope' for the
message. The recipient is by default the user running the command, and so
is the sender, but the command can be run with the -f option to supply a
different sender. For example,
/usr/lib/sendmail -bf new-filter -f islington@neverwhere <test-message
Alternatively, if the -f option is not used, but the first line of the
supplied message is a 'From' separator from a message folder file (not the
same thing as a "From:" header line), the sender is taken from there. If -f
is present, the contents of any 'From' line are ignored.
The 'return path' is the same as the envelope sender, unless the message
contains a "Return-path:" header, in which case it is taken from there. You
need not worry about any of this unless you want to test out features of a
filter file that rely on the sender address or the return path.
It is possible to change the envelope recipient by specifying further
options. The -bfd option changes the domain of the recipient address, while
the -bfl option changes the 'local part', that is, the part before the @
sign. An adviser could make use of these to test someone else's filter
file.
The -bfp and -bfs options specify the prefix or suffix for the local part.
These are relevant only when support for multiple personal mailboxes is
implemented; see the description in section 26 below.
3. Installing a filter file
A filter file is normally installed under the name .forward in your home
directory - it is distinguished from a conventional .forward file by its
first line (described below). However, the file name is configurable, and
some system administrators may choose to use some different name or
location for filter files.
4. Testing an installed filter file
Testing a filter file before installation cannot find every potential
problem; for example, it does not actually run commands to which messages
are piped. Some 'live' tests should therefore also be done once a filter is
installed.
If at all possible, test your filter file by sending messages from some
OTHER account. If you send a message to yourself from the filtered account,
and delivery fails, the error message will be sent back to the same
account, which may cause another delivery failure. It won't cause an
infinite sequence of such messages, because delivery failure messages do
not themselves generate further messages. However, it does mean that the
failure won't be returned to you, and also that the postmaster will have to
investigate the stuck message.
If you have to test a filter from the same account, then a sensible
precaution is to include the line
if error_message then finish endif
as the first filter command, at least while testing. This causes filtering
to be abandoned for a delivery failure message, and since no destinations
are generated, the message goes on to get delivered to the original
address. Unless there is a good reason for not doing so, it is recommended
that the above test be left in all filter files.
5. Format of filter files
Apart from leading white space, the first text in a filter file must be
# Exim filter
This is what distinguishes it from a conventional .forward file. If the
file does not have this initial line it is treated as a conventional
.forward file, both when delivering mail and when using the -bf testing
mechanism. The white space in the line is optional, and any capitalization
may be used. Further text on the same line is treated as a comment. For
example, you could have
# Exim filter <<== do not edit or remove this line!
The remainder of the file is a sequence of filtering commands, which
consist of keywords and data values, separated by white space or line
breaks, except in the case of conditions for the "if" command, where round
brackets (parentheses) also act as separators. For example, in the command
deliver gulliver@lilliput.fict.book
the keyword is "deliver" and the data value is
"gulliver@lilliput.fict.book". The commands are in free format, and there
are no special terminators. If the character # follows a separator, then
everything from # up to the next newline is ignored. This provides a way of
including comments in a filter file.
There are two ways in a data value can be input:
. If the text contains no white space then it can be typed verbatim.
However, if it is part of a condition, it must also be free of round
brackets (parentheses), as these are used for grouping in conditions.
. Otherwise it must be enclosed in double quotation marks. In this case,
the character \ (backslash) is treated as an 'escape character' within
the string, causing the following character or characters to be
treated specially:
\n is replaced by a newline
\r is replaced by a carriage return
\t is replaced by a tab
Backslash followed by up to three octal digits is replaced by the
character specified by those digits, and \x followed by up to two
hexacimal digits is treated similarly. Backslash followed by any other
character is replaced by the second character, so that in particular,
\" becomes " and \\ becomes \. A data item enclosed in double quotes
can be continued onto the next line by ending the first line with a
backslash. Any leading white space at the start of the continuation
line is ignored.
In addition to the escape character processing that occurs when strings are
enclosed in quotes, most data values are also subject to string expansion
(as described in the next section), in which case the characters $ and \
are also significant. This means that if a single backslash is actually
required in such a string, and the string is also quoted, \\\\ has to be
entered.
6. String expansion
Most data values are expanded before use. Expansion consists of replacing
substrings beginning with $ with other text. The full expansion facilities
are described from section 29 below onwards, but the most common case is
the substitution of a simple variable. For example, the substring
$reply_address
is replaced by the address to which replies to the message should be sent.
If such a variable name is followed by a letter or digit or underscore, it
must be enclosed in curly brackets (braces), for example,
${reply_address}
If a $ character is actually required in an expanded string, it must be
escaped with a backslash, and because backslash is also an escape character
in quoted input strings, it must be doubled in that case. The following two
examples illustrate the two cases:
if $local_part contains \$ then ...
if $local_part contains "\\$" then ...
The variable substitutions most likely to be useful in filter files are:
$home: The user's home directory.
$local_part: The part of the email address that precedes the @ sign -
normally the user's login name. If support for multiple personal mailboxes
is enabled (see section 26 below) and a prefix or suffix for the local part
was recognized, it is removed from the string in this variable.
$local_part_prefix: If support for multiple personal mailboxes is enabled
(see section 26 below), and a local part prefix was recognized, then this
variable contains the prefix. Otherwise it contains an empty string.
$local_part_suffix: If support for multiple personal mailboxes is enabled
(see section 26 below), and a local part suffix was recognized, then this
variable contains the suffix. Otherwise it contains an empty string.
$message_body: The initial portion of the body of the message. By default,
up to 500 characters are read into this variable, but the system
administrator can configure this to some other value. Newlines in the body
are converted into single spaces.
$message_headers: The header lines of the message, concatenated into a
single string, with newline characters between them.
$message_id: The message's local identification string, which is unique for
each message handled by a single host.
$message_size: The size of the message, in bytes.
$original_local_part: When a top-level address is being processed, this
contains the same value as local_part. However, if an address generated by
an alias, forward, or filter file is being processed, this variable
contains the local part of the original address.
$reply_address: The address from the "Reply-to:" header, if the message has
one; otherwise the address from the "From:" header. It is the address to
which normal replies to the message should be sent.
$return_path: The return path - that is, the sender field that is sent as
part of the message's envelope, and which is the address to which delivery
errors are sent. In many cases, this has the same value as sender_address,
but if, for example, an incoming message to a mailing list has been
expanded, then return_path may contain the address of the list maintainer
instead.
$sender_address: The sender address that was received in the envelope of
the message. This is not necessarily the same as the contents of the "From"
or "Sender" header lines.
$tod_full: A full version of the time and date, for example: Wed, 18 Oct
1995 09:51:40 +0100. The timezone is always given as a numerical offset
from GMT.
$tod_log: The time and date in the format used for writing Exim's log
files, for example: 1995-10-12 15:32:29.
7. Header variables
There is a special set of expansion variables containing the headers of the
message being processed. These variables have names beginning with
"$header_" followed by the name of the header, terminated by a colon. For
example,
$header_from:
$header_subject:
The whole item, including the terminating colon, is replaced by the
contents of the message header. If there is more than one header with the
same name, their contents are concatenated, with a single newline character
between them. The capitalization of the name following "$header_" is not
significant. Because any printing character except colon may appear in the
name of a message's header (this is a requirement of RFC 822, the document
that describes the format of a mail message) curly brackets must not be
used in this case, as they will be taken as part of the header name. Two
shortcuts are allowed in naming header variables:
. The initiating "$header_" can be abbreviated to "$h_".
. The terminating colon can be omitted if the next character is white
space. The white space character is retained in the expanded string.
If the message does not contain a header of the given name, an empty string
is substituted. Thus it is important to spell the names of headers
correctly. Do not use "$header_Reply_to" when you really mean
"$header_Reply-to".
You can test for the presence or absence of a header by means of the 'def'
condition, which is described in section 33.
8. User variables
There are ten user variables with names $n0 - $n9 that can be incremented
by the add command (see section 11). These can be used for 'scoring'
messages in various ways. If Exim is configured to run a 'system filter' on
every message, the values left in these variables are copied into the
variables $sn0 - $sn9 at the end of the system filter, thus making them
available to users' filter files. How these values are used is entirely up
to the individual installation.
9. Significant deliveries
When in the course of delivery a message is processed by a filter file,
what happens next, that is, after the whole filter file has been processed,
depends on whether the filter has set up any significant deliveries or not.
If there is at least one significant delivery, then the filter is
considered to have handled the entire delivery arrangements for the current
address, and no further processing of the address takes place. If, however,
no significant deliveries have been set up, Exim continues processing the
current address as if there were no filter file, and typically sets up a
delivery of a copy of the message into a local mailbox. In particular, this
happens in the special case of a filter file containing only comments.
The delivery commands deliver, save, and pipe are by default significant.
However, if such a command is preceded by the word "unseen", then its
delivery is not considered to be significant. In contrast, other commands
such as "mail" and "vacation" do not count as significant deliveries unless
preceded by the word "seen".
10. Filter commands
The filter commands which are described in subsequent setions are listed
below, with the section in which they are described in brackets:
add increment a user variable (11)
deliver deliver to an email address (12)
finish end processing (17)
if test condition(s) (18)
logfile define log file (16)
logwrite write to log file (16)
mail send a reply message (15)
pipe pipe to a command (14)
save save to a file (13)
testprint print while testing (17)
vacation tailored form of mail (15)
In addition, when Exim's filtering facilities are being used as a system
filter, the fail, freeze, and headers commands are available. However,
since they are usable only by the system administrator and not by ordinary
users, they are described in the main Exim specification rather than in
this document.
11. The add command
add <number> to <user variable>
e.g. add 2 to n3
There are 10 user variables of this type, and their values can be obtained
by the normal expansion syntax (for example $n3) in other commands. At the
start of filtering, these variables all contain zero. Both arguments of the
add command are expanded before use, making it possible to add variables to
each other. Subtraction can be obtained by adding negative numbers.
12. The deliver command
deliver <mail address>
e.g. deliver "Dr Livingstone <David@somewhere.africa>"
This provides a forwarding operation. The message is sent on to the given
address, exactly as happens if the address had appeared in a traditional
.forward file. To deliver a copy of the message to your normal mailbox,
your login name can be given. Once a message has been processed by the
filtering mechanism, it will not be so processed again, so doing this does
not cause a loop.
However, if you have a mail alias, you should not refer to it here. For
example, if the mail address "L.Gulliver" is aliased to "lg103" then all
references in Gulliver's .forward file should be to "lg103". A reference to
the alias will not work for messages that are addressed to that alias,
since, like .forward file processing, aliasing is performed only once on an
address, in order to avoid looping.
13. The save command
save <file name>
e.g. save $home/mail/bookfolder
This causes a copy of the message to be appended to the given file (that
is, the file is used as a mail folder). If the name does not start with a /
character, then the contents of the $home variable are prepended. The user
must of course have permission to write to the file, and the writing of the
file takes place in a process that is running as the user, under the user's
primary group. Any secondary groups to which the use may belong are not
normally taken into account, though the system administrator can configure
Exim to set them up. In addition, the ability to use this command at all is
controlled by the system administrator - it may be forbidden on some
systems. An optional mode value may be given after the file name, for
example,
save /some/folder 0640
The value for the mode is interpreted as an octal number, even if it does
not begin with a zero. This makes it possible for users to override the
system-wide mode setting for file deliveries, which is normally 600. If an
existing file does not have the correct mode, it is changed.
An alternative form of delivery may be enabled on your system, in which
each message is delivered into a new file in a given directory. If this is
the case, this functionality can be requested by giving the directory name
terminated by a slash after the save command, for example
save separated/messages/
There are two different formats for such deliveries; check with your system
administrator or local documentation to find out which (if any) are
available on your system. If this functionality is not enabled, the use of
a path name ending in a slash causes an error.
14. The pipe command
pipe <command>
e.g. pipe "$home/bin/countmail $sender_address"
This command causes a separate process to be run, and a copy of the message
is passed on its standard input. The process runs as the user, under the
user's primary group. Any secondary groups to which the use may belong are
not normally taken into account, though the system administrator can
configure Exim to set them up.
The command supplied to pipe is split up by Exim into a command name and a
number of arguments, delimited by white space except for arguments enclosed
in double quotes, in which case backslash is interpreted as an escape, or
in single quotes, in which case no escaping is recognized. Note that as the
whole command is normally supplied in double quotes, a second level of
quoting is required for internal double quotes. For example:
pipe "$home/myscript \"size is $message_size\""
By default, string expansion is performed on the separate components after
the line has been split up and the command is then run directly by Exim; it
is not run under a shell. Therefore, substitution cannot change the number
of arguments, nor can quotes, backslashes or other shell metacharacters in
variables cause confusion.
Documentation for some programs that are normally run via this kind of pipe
often suggest the the command start with
IFS=" "
This is a shell command, and should not be present in Exim filter files,
since it does not normally run the command under a shell.
However, there is an option that the administrator can set to cause a shell
to be used. In this case, the entire command is expanded as a single string
and passed to the shell for interpretation. It is recommended that this be
avoided if at all possible, since it can lead to problems when inserted
variables contain shell metacharacters.
The default PATH set up for the command is determined by the system
administrator, usually containing at least /usr/bin so that common commands
are available without having to specify an absolute file name. However, it
is possible for the system administrator to restrict the pipe facility so
that the command name must not contain any / characters, and must be found
in one of the directories in the configured PATH. It is also possible for
the system administrator to lock out the use of the pipe command
altogether.
When the command is run, the following environment variables are set up:
DOMAIN the local domain of the address
HOME your home directory
LOCAL_PART your login name
LOGNAME your login name
MESSAGE_ID the message's unique id
PATH the command search path
SENDER the sender of the message
SHELL /bin/sh
USER your login name
If you run a command that is a shell script, be very careful in your use of
data from the incoming message in the commands in your script. RFC 822 is
very generous in the characters that are legally permitted to appear in
mail addresses, and in particular, an address may begin with a vertical bar
or a slash. For this reason you should always use quotes round any
arguments that involve data from the message, like this:
/some/command "$SENDER"
so that inserted shell meta-characters do not cause unwanted effects.
15. Mail commands
There are two commands which cause the creation of a new mail message,
which does not count as a significant delivery unless the command is
preceded by the word "seen". This is a powerful facility, but it should be
used with care, because of the danger of creating infinite sequences of
messages. The system administrator can forbid the use of these commands
altogether.
To help prevent runaway message sequences, these commands have no effect
when the incoming message is a delivery error message, and messages sent by
this means are treated as if they were reporting delivery errors. Thus they
should never themselves cause a delivery error message to be returned. The
basic mail-sending command is
mail [to <address-list>]
[cc <address-list>]
[bcc <address-list>]
[subject <text>]
[text <text>]
[[expand] file <filename>]
[return message]
[log <log file name>]
[once <note file name>]
e.g. mail text "Your message about $h_subject has been received"
As a convenience for use in one common case, there is also a command called
vacation. It behaves in the same way as mail, except that the defaults for
the "file", "log", and "once" options are
expand file .vacation.msg
log .vacation.log
once .vacation
respectively. This mimics the behaviour of the traditional Unix vacation
command. If a file name is given to "vacation", it is expanded only if
explicitly requested.
The key/value argument pairs can appear in any order. At least one of
"text" or "file" must appear (except with "vacation"); if both are present,
the text string appears first in the message. If "expand" precedes "file",
then each line of the file is subject to string expansion as it is included
in the message.
Several lines of text can be supplied to "text" by including the escape
sequence '\n' in the string where newlines are required. If the command is
output during filter file testing, newlines in the text are shown as '\n'.
If no "to" argument appears, the message is sent to the address in the
"Reply_address" variable (see section 6 above). An "In-Reply-To:" header is
automatically included in the created message, giving a reference to the
message identification of the incoming message.
If 'return message' is specified, the incoming message that caused the
filter file to be run is added to the end of the message, subject to a
limitation as the the maximum size that is returned.
If a log file is specified, a line is added to it for each message sent. If
a "once" file is specified, it is used to create a database for remembering
who has received a message, and no more than one message is ever sent to
any particular address.
The file name specified for "once" is used as the base name for direct-
access (DBM) file operations. There are a number of different DBM libraries
in existence. Some operating systems provide one as a default, but even in
this case a different one may have been used when building Exim. With some
DBM libraries, specifying "once" results in two files being created, with
the suffixes ".dir" and ".pag" being added to the given name. With some
others a single file with the suffix ".db" is used, or the name is used
unchanged.
16. Logging commands
A log can be kept of actions taken by a filter file. This facility is
normally available in conventional configurations, but there are some
situations where it might not be. Also, the system administrator may choose
to disable it. Check your local information if in doubt.
Logging takes place while the filter file is being interpreted. It does not
queue up for later like the delivery commands. The reason for this is so
that a log file need be opened only once for several write operations.
There are two commands, neither of which constitutes a significant
delivery. The first defines a file to which logging output is subsequently
written:
logfile <file name>
e.g. logfile $home/filter.log
The file name may optionally be followed by a mode for the file, which is
used if the file has to be created. For example,
logfile $home/filter.log 0644
The number is interpreted as octal, even if it does not begin with a zero.
The default for the mode is 600. It is suggested that the logfile command
normally appear as the first command in a filter file. Once logfile has
been obeyed, the logwrite command can be used to write to the log file:
logwrite "<some text string>"
e.g. logwrite "$tod_log $message_id processed"
It is possible to have more than one logfile command, to specify writing to
different log files in different circumstances. Writing takes place at the
end of the file, and a newline character is added to the end of each string
if there isn't one already there. Newlines can be put in the middle of the
string by using the '\n' escape sequence. Lines from simultaneous deliver-
ies may get interleaved in the file, as there is no interlocking, so you
should plan your logging with this in mind. However, data should not get
lost.
In earlier versions of Exim the logwrite command was called log, and this
name remains available for backwards compatibility. However, it is not
possible to use the name log as a command name following a mail command,
because it will be interpreted as the log option of that command.
17. Other commands
The command "finish", which has no arguments, causes Exim to stop
interpreting the filter file. This is not a significant action unless
preceded by "seen". A filter file containing only "seen finish" is a black
hole.
It is sometimes helpful to be able to print out the values of variables
when testing filter files. The command
testprint <text>
e.g. testprint "home=$home reply_address=$reply_address"
does nothing when mail is being delivered. However, when the filtering code
is being tested by means of the -bf option, the value of the string is
written to the standard output.
When Exim's filtering facilities are being used as a system filter, the
fail and freeze commands are available. However, since they are usable only
by the system administrator and not by ordinary users, they are described
in the main Exim specification rather than in this document.
18. Obeying commands conditionally
Most of the power of filtering comes from the ability to test conditions
and obey different commands depending on the outcome. The "if" command is
used to specify conditional execution, and its general form is
if <condition>
then <commands>
elif <condition>
then <commands>
else <commands>
endif
There may be any number of "elif"-"then" sections (including none) and the
"else" section is also optional. Any number of commands, including nested
"if" commands, may appear in any of the <commands> sections.
Conditions can be combined by using the words "and" and "or", and round
brackets (parentheses) can be used to specify how several conditions are to
combine. Without brackets, "and" is more binding than "or". A condition can
be preceded by "not" to negate it, and there are also some negative forms
of condition that are more English-like.
19. String testing conditions
There are a number of conditions that operate on text strings, using the
words 'begins', 'ends', 'is', 'contains' and 'matches'. If the condition
names are written in lower-case, the testing of letters is done without
regard to case; if they are written in upper-case (for example, 'CONTAINS')
then the case of letters is significant.
<text1> begins <text2>
<text1> does not begin <text2>
e.g. $header_from: begins "Friend@"
A 'begins' test checks for the presence of the second string at the start
of the first, both strings having been expanded.
<text1> ends <text2>
<text1> does not end <text2>
e.g. $header_from: ends "public.com"
An 'ends' test checks for the presence of the second string at the end of
the first, both strings having been expanded.
<text1> is <text2>
<text1> is not <text2>
e.g. $local_part_suffix is "-foo"
An 'is' test does an exact match between the strings, having first expanded
both strings.
<text1> contains <text2>
<text1> does not contain <text2>
e.g. $header_subject: contains "evolution"
A 'contains' test does a partial string match, having expanded both
strings.
<text1> matches <text2>
<text2> does not match <text2>
e.g. $sender_address matches "(Bill|John)@"
For a 'matches' test, after expansion of both strings, the second one is
interpreted as a regular expression. Exim uses the PCRE regular expression
library, which provides regular expressions that are compatible with Perl.
Care must be taken if you need a backslash in a regular expression, because
backslashes are interpreted as escape characters both by the string
expansion code and by Exim's normal string reading code. For example, if
you want to test the sender address for a domain ending in ".com" the
regular expression is
\.com$
The backslash and dollar sign in that expression have to be escaped when
used in a filter command, as otherwise they would be interpreted by the
expansion code. Thus what you actually write is
if $sender_address matches \\.com\$
However, if the expression is given in quotes (mandatory only if it
contains white space) you have to write
if $sender_address matches "\\\\.com\\$"
with '\\\\' for a backslash and '\\$' for a dollar sign. Hence, if you |
actually require the string '\$' in a regular expression that is given in |
double quotes, you need to write '\\\\\\$'. |
If the regular expression contains bracketed sub-expressions, then numeric
variable substitutions such as $1 can be used in the subsequent actions
after a successful match. If the match fails, the values of the numeric
variables remain unchanged. Previous values are not restored after "endif"
- in other words, only one set of values is ever available. If the
condition contains several sub-conditions connected by "and" or "or", it is
the strings extracted from the last successful match that are available in
subsequent actions. Numeric variables from any one sub-condition are also
available for use in subsequent sub-conditions, since string expansion of a
condition occurs just before it is tested.
20. Numeric testing conditions
The following conditions are available for performing numerical tests:
<number1> above <number1>
<number1> is not above <number1>
<number1> below <number1>
<number1> is not below <number1>
e.g. $message_size is not above 10k
The <number> arguments must expand to strings of digits, optionally
followed by one of the letters K or M (upper-case or lower-case) which
cause multiplication by 1024 and 1024x1024 respectively.
21. Testing for personal mail
A common requirement is to distinguish between incoming personal mail and
mail from a mailing list. The condition
personal
is a shorthand for
$header_to: contains $local_part@$domain and
$header_from: does not contain $local_part@$domain and
$header_from: does not contain server@ and
$header_from: does not contain daemon@ and
$header_from: does not contain root@ and
$header_subject: does not contain "circular" and
$header_precedence: does not contain "bulk"
The variable "local_part" contains the local part of the mail address of
the user whose filter file is being run - it is normally your login id. The
"domain" variable contains the mail domain. This condition tests for the
appearance of the current user in the "To:" header, checks that the sender
is not the current user or one of a number of common daemons, and checks
the content of the "Subject:" and "Precedence:" headers.
If prefixes or suffixes are in use for local parts - something which
depends on the configuration of Exim (see section 26 below) - then the
first two tests above are also done with
${local_part_prefix}${local_part}${local_part_suffix}
instead of just $local_part. If the system is configured to rewrite local
parts of mail addresses, for example, to rewrite 'dag46' as 'Dirk.Gently',
then the rewritten form of the address is also used in the tests.
It is quite common for people who have mail accounts on a number of
different systems to forward all their mail to one system, and in this case
a check for personal mail should test all their various mail addresses. To
allow for this, the personal condition keyword can be followed by
alias <address>
any number of times, for example
personal alias smith@else.where alias jones@other.place
This causes messages containing the alias addresses to be treated as
personal.
22. Testing for significant deliveries
Whether or not any previously obeyed filter commands have resulted in a
significant delivery can be tested by the condition "delivered", for
example:
if not delivered then save mail/anomalous endif
23. Testing for error messages
The condition "error_message" is true if the incoming message is a mail
delivery error message. Putting the command
if error_message then finish endif
at the head of your filter file is a useful insurance against things going
wrong in such a way that you cannot receive delivery error reports, and is
highly recommended. Note that error_message is a condition, not an expan-
sion variable, and therefore is not preceded by $.
|
24. Testing delivery status |
|
There are two conditions which are intended mainly for use in system filter |
files, but which are available in users' filter files as well. The |
condition "first_delivery" is true if this is the first attempt to deliver |
the message, and false otherwise. In a user filter file it will be false |
only if there was previously an error in the filter, or if a delivery for |
the user failed due to, for example, a quota error, or forwarding to a |
remote address that was deferred for some reason. |
|
The condition "manually_thawed" is true only if the message was 'frozen' |
for some reason, and was subsequently released by the system administrator. |
It is unlikely to be of use in users' filter files. |
25. Testing a list of addresses
There is a facility for looping through a list of addresses and applying a
condition to each of them. It takes the form
foranyaddress <string> (<condition>)
where <string> is interpreted as a list of RFC 822 addresses, as in a
typical header line, and <condition> is any valid filter condition or
combination of conditions. The parentheses surrounding the condition are
mandatory, to delimit it from possible further sub-conditions of the
enclosing if command. Within the condition, the expansion variable
$thisaddress is set to the non-comment portion of each of the addresses in
the string in turn. For example, if the string is
B.Simpson <bart@springfield.tv>, lisa@springfield.tv (his sister)
then $thisaddress would take on the values 'bart@springfield.tv' and
'lisa@springfield.tv' in turn.
If there are no valid addresses in the list, the whole condition is false.
If the internal condition is true for any one address, the overall
condition is true and the loop ends. If the internal condition is false for
all addresses in the list, the overall condition is false. This example
tests for the presence of an eight-digit local part in any address in a To:
header:
if foranyaddress $h_to ( $thisaddress matches ^\\d{8}@ ) then ...
Header lines can be joined together if a check is to be applied to more
than one of them. For example:
if foranyaddress $h_to:,$h_cc ....
Note that the colon that terminates a header name can be omitted only for
the last name in cases like this, since RFC 822 header names are permitted
to contain a wide range of characters, including commas.
26. Multiple personal mailboxes
The system administrator can configure Exim so that users can set up
variants on their email addresses and handle them separately. Consult your
system administrator or local documentation to see if this facility is
enabled on your system, and if so, what the details are.
The facility involves the use of a prefix or a suffix on an email address.
For example, all mail addressed to lg103-<something> would be the property
of user lg103, who could determine how it was to be handled, depending on
the value of <something>.
There are two possible ways in which this can be set up. The first
possibility is the use of multiple .forward files. In this case, mail to
lg103-foo, for example, is handled by looking for a file called .forward-
foo in lg103's home directory. If such a file does not exist, delivery
fails and the message is returned to its sender.
The alternative approach is to pass all messages through a single .forward
file, which must be a filter file in order to distinguish between the
different cases by referencing the variables local_part_prefix or
local_part_suffix, as in the final example in section 28 below. If the
filter file does not handle a prefixed or suffixed address, delivery fails
and the message is returned to its sender.
It is possible to configure Exim to support both schemes at once. In this
case, a specific .forward-foo file is first sought; if it is not found, the
basic .forward file is used.
The "personal" test (see section 21) includes prefixes and suffixes in its
checking.
27. Ignoring delivery errors
As was explained above, filtering just sets up addresses for delivery - no
deliveries are actually done while a filter file is active. If any of the
generated addresses subsequently suffers a delivery failure, an error
message is generated in the normal way. However, if the filter command
which sets up a delivery is preceded by the word "noerror", then errors for
that delivery, and any deliveries consequent on it (that is, from alias,
forwarding, or filter files it invokes) are ignored.
28. Examples of filter commands
Simple forwarding:
# Exim filter
deliver baggins@rivendell.middle.earth
Vacation handling using traditional means, assuming that the .vacation.msg
and other files have been set up in your home directory:
# Exim filter
unseen pipe "/usr/ucb/vacation \"$local_part\""
Vacation handling inside Exim, having first created a file called
.vacation.msg in your home directory:
# Exim filter
if personal then vacation endif
File some messages by subject:
# Exim filter
if $header_subject: contains "empire" or
$header_subject: contains "foundation"
then
save $home/mail/f&e
endif
Save all non-urgent messages by weekday:
# Exim filter
if $header_subject: does not contain "urgent" and
$tod_full matches "^(...),"
then
save $home/mail/$1
endif
Throw away all mail from one site, except from postmaster:
# Exim filter
if $reply_address contains "@spam.site" and
$reply_address does not contain "postmaster@"
then
seen finish
endif
Handle multiple personal mailboxes
# Exim filter
if $local_part_suffix is "-foo"
then
save $home/mail/foo
elif $local_part_suffix is "-bar"
then
save $home/mail/bar
endif
29. More about string expansion
The description which follows in the next section is an excerpt from the
full specification of Exim, except that it lists only those expansion
variables that are likely to be useful in filter files.
Expanded strings are copied verbatim except when a dollar or backslash
character is encountered. A dollar specifies the start of a portion of the
string which is interpreted and replaced as described below.
An uninterpreted dollar can be included in the string by putting a
backslash in front of it - if the string appears in quotes, two backslashes
are required because the quotes themselves cause interpretation of
backslashes when the string is read in. A backslash can be used to prevent
any character being treated specially in an expansion, including itself.
30. Expansion items
The following items are recognized in expanded strings. White space may be
used between sub-items that are keywords or sub-strings enclosed in braces
inside an outer set of braces, to improve readability.
$<variable name> or ${<variable name>}
Substitute the contents of the named variable; the latter form can be
used to separate the name from subsequent alphanumeric characters. The
names of the variables are given in section 34 below. If the name of a
non-existent variable is given, the expansion fails.
$header_<header name>: or $h_<header name>:
Substitute the contents of the named message header, for example
$header_reply-to:
This particular expansion is intended mainly for use in filter files.
The header names follow the syntax of RFC 822, which states that they
may contain any printing characters except space and colon.
Consequently, curly brackets do not terminate header names. Upper-case
and lower-case letters are synonymous in header names. If the following
character is white space, the terminating colon may be omitted. The
white space is included in the expanded string. If the message does not
contain the given header, the expansion item is replaced by an empty
string. (See the def condition in section 33 for a means of testing for
the existence of a header.) If there is more than one header with the
same name, they are all concatenated to form the substitution string,
with a newline character between each of them.
${<op>:<string>}
The string is first itself expanded, and then the operation specified by
<op> is applied to it. A list of operators is given in section 32 below.
The string starts with the first character after the colon, which may be
leading white space.
${if <condition> {<string1>}{<string2>}}
If <condition> is true, <string1> is expanded and replaces the whole
item; otherwise <string2> is used. The second string need not be
present; if it is not and the condition is not true, the item is
replaced with nothing. Alternatively, the word 'fail' may be present
instead of the second string (without any curly brackets). In this case,
the expansion fails if the condition is not true. The available
conditions are described in section 33 below.
${lookup{<key>} <search type> {<file>} {<string1>} {<string2>}}
${lookup <search type> {<query>} {<string1>} {<string2>}}
These items specify data lookups in files and databases, as discussed in
chapter 6 of the main Exim specification. The first form is used for
single-key lookups, and the second is used for query-style lookups. The
<key>, <file>, and <query> strings are expanded before use.
If the lookup succeeds, then <string1> is expanded and replaces the
entire item. During its expansion, a variable called $value is avail-
able, containing the data returned by the file lookup. If the lookup
fails, <string2> is expanded and replaces the entire item. It may be
omitted, in which case the replacement is null.
For single-key lookups, the string 'partial-' is permitted to precede
the search type in order to do partial matching, and * or *@ may follow
a search type to request default lookups if the key does not match (see
sections 6.1 and 6.5 of the main Exim specification).
If a partial search is used, the variables $1 and $2 contain the wild
and non-wild parts of the key during the expansion of the replacement
text. They return to their previous values at the end of the lookup
item.
Instead of {<string2>} the word 'fail' can appear, and in this case, if
the lookup fails, the entire string expansion fails in a way that can be
detected by the caller. The consequences of this depend on the
circumstances.
This example looks up the postmaster alias in the conventional alias
file.
${lookup {postmaster} lsearch {/etc/aliases} {$value}}
This example uses NIS+ to look up the full name of the user correspond-
ing to the local part of an address, failing the expansion if it is not
found.
"${lookup nisplus {[name=$local_part],passwd.org_dir:gcos} \
{$value}fail}"
${lookup{<key:subkey>} <search type> {<file>} {<string1>} {<string2>}}
This searches for <key> in the file as described above for single-key
lookups; if it succeeds, it extracts from the data a subfield which is
identified by the <subkey>. The data related to the main key must be of
the form:
<subkey1> = <value1> <subkey2> = <value2> ...
where the equals signs are optional. If any of the values contain white
space, they must be enclosed in double quotes, and any values that are
enclosed in double quotes are subject to escape processing as described
in section 5. For example, if a line in a linearly searched file
contains
alice: uid=1984 gid=2001
then expanding the string
${lookup{alice:uid}lsearch{<file name>}{$value}}
yields the string '1984'. If the subkey is not found in <string1>, then
<string2>, if present, is expanded and replaces the entire item.
Otherwise the replacement is null.
${extract{<key>} {<string>}}
The key and the string are first expanded. Then the subfield identified
by the key is extracted from the string, exactly as just described for
lookup items with subkeys. If the key is not found in the string, the
item is replaced by nothing.
${extract{<number>} {<separators>} {<string>}}
This is distinguished from the above form of extract by having three
rather than two arguments. It extracts from the string the field whose
number is given as the first argument. The first field is numbered one.
If the number is negative or greater than the number of fields in the
string, the result is empty; if it is zero the entire string is
returned. The fields in the string are separated by any one of the
characters in the separator string. For example:
${extract{3}{:}{exim:x:42:99:& Mailer::/bin/bash}}
yields '42'. Two successive separators mean that the field between them
is empty (for example, the sixth field above). If the first argument is
not numeric, the expansion fails.
31. Expansion operators
The following operations can be performed on portions of an expanded
string:
${domain:<string>}
The string is interpreted as an RFC 822 address and the domain is
extracted from it. If the string does not parse successfully, the result
is empty.
${expand:<string>}
The expand operator causes a string to be expanded for a second time.
For example,
${expand:${lookup{$domain}dbm{/some/file}{$value}}}
first looks up a string in a file while expanding the operand for
expand, and then re-expands what it has found.
${hash_<n>_<m>:<string>}
The two items <n> and <m> are numbers. If <n> is greater than or equal
to the length of the string, the operator returns the string. Otherwise
it computes a new string of length <n> by applying a hashing function to
the string. The new string consists of characters taken from the first
<m> characters of the string
abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQWRSTUVWXYZ0123456789
and if <m> is not present the value 26 is used, so that only lower case
letters appear. These examples:
${hash_3:monty}
${hash_5:monty}
${hash_4_62:monty python}
yield
jmg
monty
fbWx
respectively. The abbreviation h can be used instead of hash.
${lc:<string>}
This forces the letters in the string into lower-case, for example:
${lc:$local_part}
${length_<number>:<string>}
The length operator can be used to extract the initial portion of a
string. It is followed by an underscore and the number of characters
required. For example
${length_50:$message_body}
The result of this operator is either the first <number> characters or
the whole string, whichever is the shorter. The abbreviation l can be
used instead of length.
${local_part:<string>}
The string is interpreted as an RFC 822 address and the local part is
extracted from it. If the string does not parse successfully, the result
is empty.
${quote:<string>}
The quote operator puts its argument into double quotes if it contains
anything other than letters, digits, underscores, full stops (periods),
and hyphens. Any occurrences of double quotes and backslashes are
escaped with a backslash. For example,
${quote:ab*cd}
becomes
"ab*cd"
The place where this is useful is when the argument is a substitution
from a variable or a message header.
${rxquote:<string>}
The rxquote operator inserts a backslash before any non-alphanumeric
characters in its argument. This is useful when substituting the values
of variables or headers inside regular expressions.
${substr_<start>_<length>:<string>}
The substr operator can be used to extract more general substrings than
length. It is followed by an underscore and the starting offset, then a
second underscore and the length required. For example
${substr_3_2:$local_part}
If the starting offset is greater than the string length the result is
the null string; if the length plus starting offset is greater than the
string length, the result is the right-hand part of the string, starting
from the given offset. The first character in the string has offset
zero. The abbreviation s can be used instead of substr.
The substr expansion operator can take negative offset values to count
from the righthand end of its operand. The last character is offset -1,
the second-last is offset -2, and so on. Thus, for example,
${substr_-5_2:1234567}
yields '34'. If the absolute value of a negative offset is greater than
the length of the string, the substring starts at the beginning of the
string, and the length is reduced by the amount of overshoot. Thus, for
example,
${substr_-5_2:12}
yields an empty string, but
${substr_-3_2:12}
yields '1'.
If the second number is omitted from substr, the remainder of the string
is taken if the offset was positive. If it was negative, all characters
in the string preceding the offset point are taken. For example, an
offset of -1 and no length yields all but the last character of the
string.
32. Expansion conditions
The following conditions are available for testing while expanding strings:
!<condition>
This negates the result of the condition.
def:<variable>
This condition is true if the named expansion variable does not contain
the empty string, for example
${if def:sender_ident {from $sender_ident}}
Note that the variable name is given without a leading $ character. If
the variable does not exist, the expansion fails.
def:header_<header name> or def:h_<header name>
This condition is true if a message is being processed and the named
header exists in the message. For example,
${if def:header_reply-to:{$h_reply-to:}{$h_from:}}
Note that no $ appears before header_ or h_ in the condition, and that
header names must be terminated by colons if white space does not
follow.
exists {<file name>}
The substring is first expanded and then interpreted as an absolute
path. The condition is true if the named file (or directory) exists. The
existence test is done by calling the stat() function.
eq {<string1>}{<string2>}
The two substrings are first expanded. The condition is true if the two
resulting strings are identical, including the case of letters.
match {<string1>}{<string2>}
The two substrings are first expanded. The second is then treated as a
regular expression and applied to the first. Because of the pre-
expansion, if the regular expression contains dollar or backslash
characters, they must be escaped with backslashes. If the whole expan-
sion string is in double quotes, further escaping of backslashes is also
required.
The condition is true if the regular expression match succeeds. At the
start of an "if" expansion the values of the numeric variable substitu-
tions $1 etc. are remembered. Obeying a "match" condition that succeeds
causes them to be reset to the substrings of that condition and they
will have these values during the expansion of the success string. At
the end of the "if" expansion, the previous values are restored. After
testing a combination of conditions using "or", the subsequent values of
the numeric variables are those of the condition that succeeded.
or {{<cond1>}{<cond2>}...}
The sub-conditions are evaluated from left to right. The condition is
true if any one of the sub-conditions is true. When a true sub-condition
is found, the following ones are parsed but not evaluated. Thus if there
are several 'match' sub-conditions the values of the numeric variables
are taken from the first one that succeeds.
and {{<cond1>}{<cond2>}...}
The sub-conditions are evaluated from left to right. The condition is
true if all of the sub-conditions are true. When a false sub-condition
is found, the following ones are parsed but not evaluated.
33. Expansion variables
This list of expansion variable substitutions contains those that are
likely to be of use in filter files. Others that are not relevant at
filtering time, or are of interest only to the system administrator, are
omitted.
$0, $1, etc: When a matches expansion condition succeeds, these variables
contain the captured substrings identified by the regular expression during
subsequent processing of the success string of the containing "if" expan-
sion item. They may also be set externally by some other matching process
which precedes the expansion of the string. For example, the commands
available in Exim filter files include an "if" command with its own regular
expression matching condition.
$domain: When an address is being directed, routed, or delivered on its
own, this variable contains the domain. In particular, it is set during
user filtering, but not during system filtering, since a message may have
many recipients and the system filter is called just once.
$home: This is set to the user's home directory when user filtering is
configured in the normal way. When running a filter test via the -bf
option, $home is set to the value of the environment variable HOME.
$local_part: When an address is being directed, routed, or delivered on its
own, this variable contains the local part. If a local part prefix or
suffix has been recognized, it is not included in the value.
$local_part_prefix: When an address is being directed or delivered locally,
and a specific prefix for the local part was recognized, it is available in
this variable. Otherwise it is empty.
$local_part_suffix: When an address is being directed or delivered locally,
and a specific suffix for the local part was recognized, it is available in
this variable. Otherwise it is empty.
$key: When a domain list is being searched, this variable contains the
value of the key, so that it can be inserted into strings for query-style
lookups. See chapter 6 of the main Exim specification for details. In other
circumstances this variable is empty.
$message_body: This variable contains the initial portion of a message's
body while it is being delivered, and is intended mainly for use in filter
files. The maximum number of characters of the body that are used is set by
the message_body_visible configuration option; the default is 500. Newlines
are converted into spaces to make it easier to search for phrases that
might be split over a line break.
$message_headers: This variable contains a concatenation of all the header
lines when a message is being processed. They are separated by newline
characters.
$message_id: When a message is being received or delivered, this variable
contains the unique message id which is used by Exim to identify the
message.
$message_precedence: When a message is being delivered, the value of any
Precedence: header is made available in this variable. If there is no such
header, the value is the null string.
$message_size: When a message is being received or delivered, this variable
contains its size in bytes. The size includes those headers that were
received with the message, but not those (such as Envelope-to:) that are
added to individual deliveries.
$n0 - $n9: These variables are counters that can be incremented by means of
the add command in filter files.
$original_domain: When a top-level address is being processed for delivery,
this contains the same value as $domain. However, if a 'child' address (for |
example, generated by an alias, forward, or filter file) is being pro- |
cessed, this variable contains the domain of the original address. When |
more than one address is being delivered in a batch by a local or remote |
transport, $original_domain is not set. |
|
Address rewriting happens as a message is received. Once it has happened, |
the previous form of the address is no longer accessible. It is the |
rewritten top-level address whose domain appears in this variable. |
$original_local_part: When a top-level address is being processed for
delivery, this contains the same value as $local_part. However, if a |
'child' address (for example, generated by an alias, forward, or filter |
file) is being processed, this variable contains the local part of the |
original address. When more than one address is being delivered in a batch |
by a local or remote transport, $original_localpart is not set. |
|
Address rewriting happens as a message is received. Once it has happened, |
the previous form of the address is no longer accessible. It is the |
rewritten top-level address whose local part appears in this variable. |
$originator_gid: The value of $caller_gid that was set when the message was |
received. For messages received via the command line, this is the gid of |
the sending user. For messages received by SMTP over TCP/IP, this is |
normally the gid of the Exim user. |
|
$originator_uid: The value of $caller_uid that was set when the message was |
received. For messages received via the command line, this is the uid of |
the sending user. For messages received by SMTP over TCP/IP, this is |
normally the uid of the Exim user. |
$primary_hostname: The value set in the configuration file, or read by the
uname() function.
$qualify_domain: The value set for this option in the configuration file.
$qualify_recipient: The value set for this option in the configuration
file, or if not set, the value of $qualify_domain.
$received_protocol: When a message is being processed, this variable
contains the name of the protocol by which it was received.
$recipients_count: When a message is being processed, this variable con-
tains the number of envelope recipients that came with the message.
Duplicates are not excluded from the count.
$reply_address: When a message is being processed, this variable contains
the contents of the Reply-to: header if one exists, or otherwise the
contents of the From: header.
$return_path: When a message is being delivered, this variable contains the
return path - the sender field that is sent as part of the envelope. In
many cases, this has the same value as $sender_address, but if, for
example, an incoming message to a mailing list has been expanded by a
director which specifies a specific address for delivery error messages,
then $return_path contains the new error address, while $sender_address
contains the original sender address that was received with the message.
$sender_address: When a message is being processed, this variable contains
the sender's address that was received in the message's envelope. For |
delivery failure reports, the value of this variable is the empty string. |
$sender_address_domain: The domain portion of $sender_address.
$sender_address_local_part: The local part portion of $sender_address.
$sender_fullhost: When a message has been received from a remote host, this
variable contains the host name and IP address in a single string, which
always ends with the IP address in square brackets. The format of the rest
of the string depends on whether the host issued a HELO or EHLO SMTP
command, and whether the host name was verified by looking up its IP
address. A plain host name at the start of the string is a verified host
name; if this is not present, verification either failed or was not
requested. A host name in parentheses is the argument of a HELO or EHLO
command. This is omitted if it is identical to the verified host name or to
the host's IP address in square brackets.
$sender_helo_name: When a message has been received from a remote host that
has issued a HELO or EHLO command, the first item in the argument of that
command is placed in this variable. It is also set if HELO or EHLO is used
when a message is received using SMTP locally via the -bs or -bS options.
$sender_host_address: When a message has been received from a remote host,
this variable contains the host's IP address.
$sender_host_name: When a message has been received from a remote host,
this variable contains the host's name as verified by looking up its IP
address. If verification failed, or was not requested, this variable
contains the empty string.
$sender_ident: When a message has been received from a remote host, this
variable contains the identification received in response to an RFC 1413
request. When a message has been received locally, this variable contains
the login name of the user that called Exim.
$sn0 - $sn9: These variables are copies of the values of the $n0 - $n9
accumulators that were current at the end of the system filter file. This
allows a system filter file to set values that can be tested in users'
filter files. For example, a system filter could set a value indicating how
likely it is that a message is junk mail.
$tod_bsdinbox: The time of day and date, in the format required for BSD-
style mailbox files, for example: Thu Oct 17 17:14:09 1995.
$tod_full: A full version of the time and date, for example: Wed, 16 Oct
1995 09:51:40 +0100. The timezone is always given as a numerical offset
from GMT.
$tod_log: The time and date in the format used for writing Exim's log
files, for example: 1995-10-12 15:32:29.
$value: This variable contains the result of an expansion lookup operation,
as described above. If used in other circumstances, its contents are null.
$version_number: The version number of Exim.
|