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 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624
|
fdm ============================================================================
Introduction ===================================================================
fdm is a program to fetch mail and deliver it in various ways depending on a
user-supplied ruleset. Mail may be fetched from stdin, IMAP or POP3 servers, or
from local maildirs, and filtered based on whether it matches a regexp, its
size or age, or the output of a shell command. It can be rewritten by an
external process, dropped, left on the server or delivered into maildirs,
mboxes, to a file or pipe, or any combination.
fdm is designed to be lightweight but powerful, with a compact but clear
configuration syntax. It is primarily designed for single-user uses but may
also be configured to deliver mail in a multi-user setup. In this case, it uses
privilege separation to minimise the amount of code running as the root user.
Table of contents ==============================================================
1 Installation
2 Quick start
3 The configuration file
3.1 Including other files
3.2 Macros
3.3 Testing macros
3.4 Shell commands
4 Invoking fdm
4.1 Temporary files
4.2 Command line arguments
4.3 Running from cron
4.4 The lock file
4.5 Testing and debugging
5 Fetching mail
5.1 Mail tags
5.2 POP3 and POP3S
5.3 SSL certificate verification
5.4 The .netrc file
5.5 IMAP and IMAPS
5.6 IMAP or POP3 over a pipe or ssh
5.7 stdin and local mail
5.8 From maildirs and mboxes
5.9 Using NNTP and NNTPS
5.10 New or old mail only
6 Defining actions
6.1 Drop and keep
6.2 Maildirs
6.3 Mboxes
6.4 IMAP and IMAPS
6.5 SMTP
6.6 Write, pipe, exec and append
6.7 stdout
6.8 Rewriting mail
6.9 Adding or removing headers
6.10 Tagging
6.11 Compound actions
6.12 Chained actions
7 Filtering mail
7.1 Nesting rules
7.2 Lambda actions
7.3 The all condition
7.4 Matched and unmatched
7.5 Matching a regexp
7.6 Matching bracket expressions
7.7 Matching by age or size
7.8 Using a shell command
7.9 Attachments
7.10 Matching tags
7.11 Using caches
7.12 Cache commands
8 Setting options
9 Archiving and searching mail
10 Using fdm behind a proxy
11 Bug reports and queries
12 Frequently asked questions
1 Installation =================================================================
fdm depends on the Trivial Database library (TDB), available at:
http://sourceforge.net/projects/tdb/
Ensure it is installed, then download the source tarball and build fdm with:
$ tar -zxvf fdm-?.?.tar.gz
$ cd fdm-?.?
$ make
Then run 'make install' to install fdm to the default locations under
/usr/local. The PREFIX environment variable may be set to specify an
alternative installation location:
$ export PREFIX=/opt # defaults to /usr/local
$ sudo make install
If being run as root, fdm requires a user named "_fdm" to exist. It will drop
privileges to this user and its primary group. The user may be added on
OpenBSD with, for example:
# useradd -u 999 -s /bin/nologin -d /var/empty -g=uid _fdm
It is not necessary to add a user if fdm is always started by a non-root user.
fdm can be built to use PCRE rather than standard regexps. To do so, add -DPCRE
to the make command:
$ make -DPCRE
Or PCRE=1 if using GNU make:
$ make PCRE=1
2 Quick start ==================================================================
A simple ~/.fdm.conf file for a single user fetching from POP3, POP3S and IMAP
accounts and delivering to one maildir may look similar to:
# Set the maximum size of mail.
set maximum-size 128M
# An action to save to the maildir ~/mail/inbox.
action "inbox" maildir "%h/mail/inbox"
# Accounts: POP3, POP3S and IMAP. Note the double escaping of the '\'
# character in the password. If the port is omitted, the default
# ("pop3", "pop3s", "imap" or "imaps" in the services(5) db) is used.
account "pop3" pop3 server "my.pop3.server"
user "my-username" pass "my-password-with-a-\\-in-it"
account "pop3s" pop3s server "pop.googlemail.com" port 995
user "my-account@gmail.com" pass "my-password"
# If the 'folder "my-folder"' argument is omitted, fdm will fetch mail
# from the inbox.
account "imap" imap server "my.imap.server"
user "my-username" pass "my-password" folder "my-folder"
# Discard mail from Bob Idiot. Note that the regexp is an extended
# regexp, and case-insensitive by default. This action is a "lambda" or
# unnamed action, it is defined inline as part of the match rule.
match "From:.*bob@idiot\\.net" action drop
# Match all other mail and deliver using the 'inbox' action.
match all action "inbox"
A simple initial configuration file without filtering, perhaps to replace
fetchmail or getmail delivering to maildrop, may look similar to:
# Set the maximum size of mail.
set maximum-size 128M
# Action to pipe directly to maildrop.
action "maildrop" pipe "/usr/local/bin/maildrop"
# Account definitions.
account ....
# Send all mail to maildrop.
match all action "maildrop"
To run fdm every half hour from cron, add something like this:
*/30 * * * * /usr/local/bin/fdm -l fetch
See the fdm.conf(5) man page or the rest of this manual for more detail of the
configuration file format.
3 The configuration file =======================================================
fdm is controlled by its configuration file. It first searches for a .fdm.conf
file in the invoking user's home directory. If that fails, fdm attempts to use
/etc/fdm.conf. The configuration file may also be specified using the '-f'
command line option, see the section on that subject below.
This section gives an overview of the configuration file syntax. Further
details of syntax, and specific keywords, are covered in later sections.
The configuration file has the following general rules:
- Keywords are specified as unadorned lowercase words: match, action, all.
- Strings are enclosed in double quotes (") or single quotes ('). In double
quoted strings, double quotes may be included by escaping them using the
backslash character (\). Backslashes must also be escaped ("\\") - this
applies to all such strings, including regexps and passwords. The special
sequence '\t' is replaced by a tab character. In single quoted strings no
escaping is necessary, but it is not possible to include a literal ' or a
tab character.
- Comments are prefixed by the hash character (#) and continue to the end of
the line.
- Whitespace is largely ignored. Lines may generally be split, concatenated
or indented as preferred.
- Lists are usually specified as 'singular item' or 'plural { item item }', for
example: 'user "nicholas"', 'users { "nicholas" "bob" }'. The singular/plural
distinction is not required, it is recommended only to aid readability:
'user { "nicholas "bob" }' is also accepted.
- Regexps are specified as normal strings without additional adornment other
than the "s (not wrapped in /s). All regexps are extended regexps. They are
case insensitive by default but may be prefixed with the 'case' keyword to
indicate case sensitivity is required.
- Strings may be concatenated using plus: "a" + "b" is the same as "ab". This
is most useful to wrap strings across multiple lines.
Definition/option lines generally follow the following basic form:
<keyword> <name or command> <parameters>
Example lines that may appear in a configuration file are:
# This is a comment.
set lock-types flock
account "stdin" disabled stdin
action "strip-full-disclosure"
rewrite "sed 's/^\\(Subject:.*\\)\\[Full-disclosure\\] /\\1/'"
match "^X-Mailing-List:.*linux-kernel@vger.kernel.org" in headers
or "^(To:|Cc:):.*@vger.kernel.org" in headers
action "linux-kernel"
3.1 Including other files ------------------------------------------------------
The fdm configuration may be split into several files. Additional files may
be referenced using the 'include' keyword:
include "my-include-file.conf"
include "/etc/fdm.d/shared-conf-1.conf"
3.2 Macros ---------------------------------------------------------------------
Macros may be defined and used in the configuration file. fdm makes a
distinction between macros which may hold a number (numeric macros) and
those that hold a string (string macros). Numeric macros are prefixed with
the percentage sign (%) and string by the dollar sign ($). Macros are
defined using the equals operator (=):
%nummacro = 123
$strmacro = "a string"
Macros may then be referenced in either a standalone fashion anywhere a string
or number is expected, depending on the type of macro:
$myfile = "a-file"
include $myfile
%theage = 12
match age < %theage action "old-mail"
Or embedded in a string by enclosing the macro name in {}s:
$myfile2 = "a-file2"
include "/etc/${myfile2}"
%anum = 57
include "/etc/file-number-%{anum}"
Macros are not substituted in strings specified using single-quotes.
3.3 Testing macros -------------------------------------------------------------
The 'ifdef', 'ifndef' and 'endif' keywords may be used to include or omit
sections of the configuration file depending on whether a macro is defined. An
'ifdef' is followed by a macro name (including $ or % type specifier) and if
that macro exists, all following statements up until the next endif are
evaluated (accounts created, rules added, and so on), otherwise they are
skipped. 'ifndef' is the inverse: if the macro exists, the statements are
skipped, otherwise they are included. An example is:
ifdef $dropeverything
match all action drop
endif
These keywords are particularly useful in conjunction with the '-D' command line
option. Any statements between 'ifdef'/'ifndef' and 'endif' must still be valid
syntax.
3.4 Shell commands -------------------------------------------------------------
The value of a shell command may be used at any point in the configuration file
where fdm expects a string or number. Shell commands are invoked by enclosing
them in $() or %(). They are executed when the configuration file is parsed
and if $() is used, any output to stdout is treated as a literal string (as
if the output was inserted directly in the file enclosed in double quotes); %()
attempts to convert the output to a number. For example:
$mytz = $(date +%Z)
%two = %(expr 1 + 1)
$astring = "abc" + $(echo def)
Parts of the command within double quotes (") are subject to tag and macro
replacement as normal (so it is necessary to use %% if a literal % is required,
see the section on tags below); parts outside double quotes or inside single
quotes are not.
4 Invoking fdm =================================================================
fdm may be invoked manually from the command line or regularly using a program
such as cron(8).
4.1 Temporary files ------------------------------------------------------------
As each mail is being processed, it is stored in a temporary file in /tmp, or
if the TMPDIR environment variable exists in the directory it points to.
fdm tries to queue a number of mails simultaneously, so that older can be
delivered while waiting for the server to provide the next. The maximum length
of the queue for each account is set by the 'queue-high' option (the default is
two) and the maximum mail size accepted by the 'maximum-size' option (the
default is 32 MB). In addition, the 'rewrite' action requires an additional
temporary mail. Although fdm will fail rather than dropping mail if the disk
becomes full, users should bear in mind the possibility and set the size of the
temporary directory and the fdm options according to their needs.
4.2 Command line arguments -----------------------------------------------------
The fdm command has the following synopsis:
fdm [-klmnqv] [-f conffile] [-u user] [-a account] [-x account]
[-D name=value] [fetch | poll | cache ...]
The meaning of the flags are covered in the fdm(1) man page, but a brief
description is given below. The flags are also mentioned at relevant points
in the rest of this document.
Flag Meaning
-k Keep all mail (do not delete it from the server). This is useful for
testing delivery rules without risking mail ending up permanently
in the wrong place.
-l Log to syslog(3) using the 'mail' facility rather than outputting to
stderr.
-m Ignore the lock file.
-n Run a syntax check on the configuration file and exit without fetching
any mail.
-q Quiet mode. Don't print anything except errors.
-v Print verbose debugging output. This option may be specified multiple
times for increasing levels of verbosity. Useful levels are -vv to
display the result of parsing the configuration file, and -vvvv to copy
all traffic to and from POP3 or IMAP servers to stdout (note that -l
disables this behaviour).
-f conffile
Specify the path of the configuration file.
-u user
Use 'user' as the default user for delivering mail when started as
root.
-a account
Process only accounts with a name matching the given pattern. Note that
fnmatch(3) wildcards may be used to match multiple accounts with one
option, and that the option may be specified multiple times.
-x account
Process all accounts except those that match the given pattern. Again,
fnmatch(3) wildcards may be used, and the -x option may be specified
multiple times.
-D name=value
Define a macro. The macro name must be prefixed with '$' or '%' to
indicate if it is a string or numeric macro. Macros defined on the
command line override any macros with the same name defined in the
configuration file.
If -n is not specified, the flags must be followed by one of the keywords
'fetch' or 'poll' or 'cache'. The 'fetch' keyword will fetch and deliver mail,
the 'poll' keyword print an indication of how many mails are present in each
account, and the 'cache' keyword is followed by one of a set of cache commands
used to manipulate caches from the command-line (see the sections on caches
below). 'fetch' or 'poll' or 'cache' may be abbreviated.
Examples:
$ fdm -v poll
$ fdm -vvnf /etc/my-fdm.conf
$ fdm -lm -a pop3\* fetch
$ fdm -x stdinacct fetch
# fdm -u nicholas -vv f
4.3 Running from cron ----------------------------------------------------------
To fetch mail regularly, fdm must be run from cron. This line in a crontab(5)
will run fdm every 30 minutes:
*/30 * * * * /usr/local/bin/fdm -l fetch
The '-l' option sends fdm's output to syslog(3) rather than having cron mail
it. To keep a closer eye, adding '-v' options and removing '-l' will have
debugging output mailed by cron, or, using a line such as:
*/30 * * * * fdm -vvvv fetch >>/home/user/.fdm.log 2>&1
Will append extremely verbose fdm output to the ~/.fdm.log file. Note that this
log file can become pretty large, so another cronjob may be required to remove
it occasionally!
4.4 The lock file --------------------------------------------------------------
fdm makes use of a lock file to prevent two instances running simultaneously.
By default, this lock file is .fdm.lock in the home directory of the user who
runs fdm, or /var/db/fdm.lock for root. This default may be overridden in
the configuration file with the 'set lock-file' command:
set lock-file "/path/to/my/lock-file"
Or disabled altogether by being set to the empty string:
set lock-file ""
The '-m' command line option may be used to force fdm to ignore the lock file
and run regardless of its existence and without attempting to create it.
4.5 Testing and debugging ------------------------------------------------------
fdm has some features to assist with testing and debugging a ruleset:
The '-n' command line option. This is particularly useful in conjunction with
'-vv', for example:
$ cat test.conf
account "pop3" pop3 server "s" user "u" pass "p"
action "rw" rewrite "sed 's/\\(Subject:.*\\)\\[XYZ\\]/\1/'"
action "mbox" mbox "%h/INBOX"
match all actions { "rw" "mbox" }
$ fdm -vvnf test.conf
version is: fdm 0.6 (20061204-1433)
starting at: Tue Dec 5 15:45:41 2006
user is: nicholas, home is: /home2/nicholas
loading configuration from test.conf
added account: name=pop3 fetch=pop3 server "s" port pop3 user "u"
added action: name=rw deliver=rewrite "sed 's/\(Subject:.*\)\[XYZ\]/1/'"
added action: name=mbox deliver=mbox "%h/INBOX"
finished file test.conf
added rule: actions="rw" "mbox" matches=all
configuration loaded
locking using: flock
headers are: "to" "cc"
domains are: "yelena"
using tmp directory: /tmp
Looking at the output, the parsed strings used by fdm can be seen, and it is
possible to spot that an escape character has been missed in the command.
If '-vvvv' is used, fdm will print all data sent to and received from remote
servers to stdout. Note that this is disabled if the '-l' option is given, and
includes passwords, usernames and hostnames unmodified. The 'fdm-sanitize'
script provided with fdm may be used to remove passwords and usernames from
this output, either while it is being collected:
fdm -vvvv -a testacct f 2>&1|./fdm-sanitize|tee my-output
Or afterwards:
./fdm-sanitize <vvvv-output >my-output
Since fdm fetches multiple accounts simultaneously, which may intersperse
debugging output, it is recommended to fetch each account seperately if running
the output through fdm-sanitize. If this is not done, it may not be able to
detect all usernames or passwords.
The '-k' command line option (and the 'keep' keywords on actions and accounts,
covered later) prevent fdm from deleting any mail after delivery. This may be
used to perform any number of test deliveries without risk of losing mail.
5 Fetching mail ================================================================
fdm fetches mail from a set of 'accounts', defined using the 'account'
keyword. Each account has a name, a type, a number of account specific
parameters and a couple of optional flags. The general form is:
account <name> [<users>] [disabled] <type> [<parameters>] [keep]
The <name> item is a string by which the account is referred in filtering
rules, log output and for the '-a' and '-x' command line options.
The <users> portion specifies the default users to use when delivering mail
fetched from this account as root. It has the same syntax as discussed in
detail in the section below on defining actions.
If the optional 'disabled' keyword is present, fdm ignores the account unless
it is specified on the command line using the '-a' flag.
The optional 'keep' keyword instructs fdm to keep all mail from this account
(not delete it from the server) regardless of the result of the filtering
rules.
The <type> item may be one of: 'pop3', 'pop3s', 'imap', 'imaps', 'stdin',
'maildir' or 'maildirs'.
5.1 Mail tags ------------------------------------------------------------------
As mail is processed by fdm, it is tagged with a number of name/value pairs.
Some tags are added automatically, and mail may also be tagged explicitly by
the user (see the later tagging section). Tags may be inserted in strings in a
similar manner to macros, except tags are processed when the string is used
rather than always as the configuration file is parsed. A tag's value is
inserted by wrapping its name in %[], for example:
match string "%[account]" to "myacct" action "myacctact"
Most of the default tags have a single-letter shorthand which removes the needs
for the []s:
match string "%a" to "myacct" action "myacctact"
Including a nonexistent tag in a string is equivalent to including a tag with
an empty value, so "abc%[nonexistent]def" will be translated to "abcdef".
The automatically added tags are:
Name Shorthand Replaced with
account %a The name of the account from which the mail was
fetched.
home %h The delivery user's home directory.
uid %n The delivery user's uid.
action %t The name of the action the mail has matched.
user %u The delivery user's username.
hour %H The current hour (00-23).
minute %M The current minute (00-59).
second %S The current second (00-59).
day %d The current day of the month (00-31).
month %m The current month (01-12).
year %y The current year as four digits.
year2 The current year as two digits.
dayofweek %W The current day of the week (0-6, Sunday is 0).
dayofyear %Y The current day of the year (000-365).
quarter %Q The current quarter (1-4).
rfc822date The current time in RFC822 date format.
mail_hour The hour from the mail's date header, converted
to local time, if it exists and is valid,
otherwise the current time.
mail_minute The minute from the mail's date header.
mail_second The second from the mail's date header.
mail_day The day from the mail's date header.
mail_month The month from the mail's date header.
mail_year The year from the mail's date header as four
digits.
mail_year2 The same as two digits.
mail_rfc822date The mail date in RFC822 format.
hostname The local hostname.
In addition, the shorthand %% is replaced with a literal %, and %1 to %9 are
replaced with the result of any bracket expressions in the last regexp (see
later section on regexps). A leading ~ or ~user is expanded in strings where a
path or command is expected.
Some accounts add additional tags, discussed below.
Tags are replaced in almost all strings (including those in single-quotes!),
some when the configuration file is parsed and some when the string is used.
5.2 POP3 and POP3S -------------------------------------------------------------
Mail may be fetched from a POP3 account. A POP3 account is defined by
specifying the following parameters: the server host and optionally port, and
optionally the user name and password. If the port is not specified, the
default port ('pop3' in the services(5) database) is used. If the user name,
password, or both is omitted, fdm attempts to look it up the .netrc file, see
the next section for details.
Examples of a POP3 account definition are:
account "pop3acct" pop3 server "pop.isp.com" user "bob" pass "pass"
account "gmx" pop3 server "pop.gmx.net" port 110 user "jim" pass "pass"
account "acct" pop3 server "10.0.0.1" port "pop3"
user "nicholas" keep
account "lycos" disabled pop3 server $localserver port 10110
pass "password"
Note that the server string is enclosed in double quotes even if it is an IP,
and don't forget to escape any " and \ characters in passwords!
fdm will attempt to use APOP to obscure the password, if the server offers it.
If the server advertises itself as supporting APOP but subsequently refuses
to accept it, fdm will not retry with a cleartext password. Use of APOP can be
disabled for an account using the 'no-apop' flag, for example:
account "acct" pop3 server "server" user "bob" pass "pass" no-apop
POP3S is specified in exactly the same way, except using the 'pop3s' keyword
for the type, and the default port is 'pop3s' rather than 'pop3':
account "pop3sacct" pop3s server "pop.isp.com" user "bob" pass "pass"
POP3 accounts automatically tag mail with 'server' and 'port' tags, with the
value of the server and port attributes exactly as specified in the account
definition. A 'server_uid' tag is also added with the server unique id (UIDL).
POP3 adds 'lines', 'body_lines' and 'header_lines' tags with the number of
lines in the complete mail and its body and header. These tags are not updated
to reflect any changes made to the mail by fdm rules.
5.3 SSL certificate verification -----------------------------------------------
fdm can verify SSL certificates before collecting mail from an SSL server. This
is enabled globally with the 'verify-certificates' option:
set verify-certificates
And may be disabled per-account using the 'no-verify' keyword (this applies to
both POP3S and IMAPS accounts):
account "pop3sacct" pop3s server "pop.isp.com" no-verify
For an introduction to SSL, see:
http://httpd.apache.org/docs/2.0/ssl/ssl_intro.html
A cert bundle is required to verify SSL certificate chains. For more information
see:
http://lynx.isc.org/current/README.sslcerts
A pregenerated bundle is available courtesy of the MirOS project:
http://cvs.mirbsd.de/src/etc/ssl.certs.shar
5.4 The .netrc file ------------------------------------------------------------
If the user name or password is omitted in POP3 or IMAP account definitions,
fdm will attempt to look it up in the .netrc file in the invoking user's home
directory.
The .netrc file format is shared with ftp(1) and some other programs. It
consists of a number of 'machine' sections and optionally one 'default' section
containing a username ('login') and password for that host. fdm accepts entries
only if the machine name matches the POP3 or IMAP server string exactly. If no
matches are found and a 'default' section exists, it is used.
An example .netrc file is:
machine "my.mail-server.com"
login "nicholas"
password "abcdef"
machine "pop.googlemail.com"
password "pass1"
default
login "bob"
password "moo"
fdm will abort if the .netrc file is world-writable or world-readable.
5.5 IMAP and IMAPS -------------------------------------------------------------
IMAP and IMAPS accounts are defined using exactly the same syntax as for POP3
and POP3S, aside from using the 'imap' or 'imaps' keywords and that the default
port is 'imap' or 'imaps'. There is also an additional, optional 'folders'
option to specify the folders from which mail should be fetched. If omitted,
fdm defaults to the inbox.
Note that with IMAP and IMAPS, mail is still removed from the server unless the
'keep' option is given, or the '-k' command line option used.
Examples of IMAP and IMAPS accounts include:
account "imapacct" imap server "imap.server.ca" user "bob" pass "pass"
account "oldimap" disabled imaps server "192.168.0.1" port 10993
user "nicholas" pass "pass" folders { "Saved" "MyStuff" }
account "workspam" disabled imap server "my-work.ath.cx"
user "Nicholas" folder "Junk"
By default, fdm prefers the CRAM-MD5 authentication method, since no passwords
are sent in the clear. If the server does not advertise CRAM-MD5 capability,
the older LOGIN method is used. For IMAPS connections (which use SSL), the
LOGIN method is just as secure. Either of these methods may be disabled with
the 'no-cram-md5' and 'no-login' options.
As with POP3, IMAP adds the 'server', 'port', 'server_uid' and the three line
count tags to mail.
5.6 IMAP or POP3 over a pipe or ssh --------------------------------------------
Mail may be fetched using IMAP or POP3 via a pipe. This is particularly useful
for fetching mail over ssh using public keys.
For IMAP, a user and password may be supplied, but fdm will only use them if
the server asks. If the connection is preauthenticated, the user and password
are unnecessary. For POP3, a user and password must be supplied as usual: due
to the lack of server name, it cannot be read from the .netrc file.
Communication takes place via the pipe program's stdin and stdout. If any
output is found on stderr, fdm will print it (or log it with '-l').
Examples are:
account "imapssh" imap pipe "ssh jim@myhost /usr/local/libexec/imapd"
account "imapssh2" imap pipe "/usr/bin/whatever" user "bob" pass "bah"
account "pop3local" pop3
pipe "/usr/local/bin/ipop3d" user "me" pass "foo"
5.7 stdin and local mail -------------------------------------------------------
fdm may be configured to fetch mail from stdin, by specifying an account of
type 'stdin', for example:
account "stdin" disabled stdin
This is most useful to have fdm behave as a mail delivery agent. To configure
it for single-user use with sendmail, the simplest method it to add:
"|/usr/local/bin/fdm -m -a stdin fetch"
To the user's ~/.forward file (including the double quotes). Note the use of
'-m' to prevent stdin delivery from interfering with any normal cronjob, and
'-a' to specify that only the disabled "stdin" account should be fetched.
stdin accounts add the three line count tags described in the POP3 section.
5.8 From maildirs and mboxes ---------------------------------------------------
Fetching from maildirs allows fdm to be used to filter mail on the local
machine. This is covered more detail in the later section on archiving and
searching.
Maildir accounts are specified as follows:
account "mymaildir" maildir "/path/to/dir"
account "mymaildirs" maildirs { "/path/to/dir1" "/path/to/dir2" }
Shell glob wildcards may be included in the path names to match multiple
maildirs, but every directory found must be a valid maildir.
Maildir accounts tag mail with a 'maildir' tag which is the basename of the
maildir.
Fetching from mboxes is similar:
account "mybox" mbox "/path/to/mbox"
account "mymboxes" mboxes { "/path/to/mbox1" "/path/to/mbox2" }
Note that if an mbox is modified (mail is dropped from it), sufficient disk
space is required to create a temporary copy of the entire mbox.
5.9 Using NNTP and NNTPS -------------------------------------------------------
fdm can fetch news messages from a news server using NNTP or NNTPS. News
accounts are specified like so:
account "news1" nntp server "news.server.sk" port 119
group "comp.unix.bsd.openbsd.misc"
cache "%h/.fdm.cache/%[group]"
account "mynews" nntps server "ssl.news.server" port "nntps"
groups { "alt.test" "alt.humor.best-of-usenet" }
cache "%h/.fdm.cache"
The cache is a file used to store details of the last article fetched. If only
one group is supplied in the account definition, %[group] tags are replaced by
the name of the group in the cache path. If multiple groups are provided,
%[group] is removed.
Note that whether a message is kept or deleted is irrelevent to NNTP, articles
are always left on the server. The index and message-id of the last article
is recorded in the cache file so that older articles are skipped when the a
newsgroup is again fetched. This happens regardless of any 'keep' keywords or
the '-k' command line option.
As with POP3 and IMAP, NNTP accounts add the 'server' and 'port' tags to mail.
In addition, a 'group' tag is added with the group name. This can ensure
articles are matched purely on the group they are fetched from (trying to do
this using headers is unreliable with cross-posted articles). For example:
match account "news" {
match string "%[group]" to "comp.lang.c" action "news-%[group]"
match string "%[group]" to "comp.std.c" action "news-%[group]"
match all action drop
}
5.10 New or old mail only ------------------------------------------------------
With POP3 and IMAP, fdm can be set up to fetch only new or old mail. For POP3
this is achieved by recording the current state of the server in a cache file,
which is updated as each mail is fetched. For IMAP it makes use of the 'seen'
server flag which is updated by the server after each mail is fetched.
These options are specified as in the following examples. For POP3:
account "name" pop3 server "blah" new-only cache "~/.fdm-pop3-cache"
account "acct" pop3s server "my-server" user "bob"
new-only cache "my-server-pop3-cache" no-apop
And for IMAP:
account "imap" imap server "blah" new-only
account "sslimap" imaps server "imaps.somewhere"
user "user" pass "pass" old-only no-verify
Note that currently, when using this with IMAP, the server is permitted to flag
the mail as 'seen' before fdm has successfully delivered it, so there is no
guarantee that mail so marked has been delivered, only that it has been
fetched.
6 Defining actions =============================================================
An action is a particular command to execute on a mail when it matches a
filtering rule (see the next section on filtering mail). Actions are named,
similar to accounts, and have a similar form:
action <name> [<users>] <type> <parameters>
The <users> item may be either:
- the keyword 'user' followed by a single username string or uid, such as:
user "nicholas"
user "1000"
- the keyword 'users' followed by a list of users in {}s, for example:
users { "1001" "nicholas" }
If users are specified, the action will be run once for each user, with fdm
changing to that user before executing the action. Note that fdm will execute
the action once for each user even when not started as root, but will not be
able to change to the user. The user keyword is primarily of use in multiuser
configurations. If users are present on an action, they override any specified
by the account definition.
Users are looked up in the Unix passwd file or optionally (if fdm is built
with "make -DCOURIER" or "make COURIER=1") using courier-authlib. The
order of lookups may be specified with the lookup-order option:
set lookup-order courier passwd
set lookup-order passwd
If running as root and no user is specified on either the action or on the
filtering rule (see the section on filtering below), the default user is
used, see the '-u' command line option and the 'default-user' option in the
setting options section
6.1 Drop and keep --------------------------------------------------------------
The simplest actions are the 'drop' and 'keep' actions. They have no parameters
and are specified like this:
action "mydropaction" drop
action "mykeepaction" keep
The 'drop' action arranges for mail to be dropped when rule evaluation is
complete. Note that using 'drop' does not stop further evaluation if the
filtering rule contains a 'continue' keyword, and it may be overridden by a
'keep' option on the account or by the '-k' flag on the command line.
The 'keep' action is similar to 'drop', but it arranges for the mail to be
kept once rule evaluation is complete, rather than dropped.
6.2 Maildirs -------------------------------------------------------------------
Mails may be saved to a maildir through a 'maildir' action, defined like so:
action "mymaildiraction" maildir "/path/to/maildir"
If any component of the maildir path does not exist, it is created, unless the
no-create option is specified. Mails saved to a maildir are tagged with a
'mail_file' tag containing the full path to the file in which they were saved.
6.3 Mboxes ---------------------------------------------------------------------
An action to deliver to an mbox is defined in the same way as for a maildir:
action "mymboxaction" mbox "/path/to/mbox"
The same % tokens are replaced in the path. If the mbox does not exist, it
is created. Mboxes may optionally be gzip compressed by adding the 'compress'
keyword:
action "mymboxaction" mbox "/path/to/mbox" compress
fdm will append .gz to the mbox path (if it is not already present) and append
compressed data. If the mbox exists but is not already compressed, uncompressed
data will be appended.
As with maildirs, if any component of the mbox path does not exist, it is
created, unless the no-create option is set. Mails saved to an mbox are tagged
with an 'mbox_file' tag with the path of the mbox.
6.4 IMAP and IMAPS -------------------------------------------------------------
An action may be defined to store mail in an IMAP folder. The specification is
similar to the IMAP action. A server host and optionally port (default 'imap'
or 'imaps') must be specified. A username and password may be supplied; if they
are omitted, fdm will attempt to find a .netrc entry. Examples include:
action "myimapaction" imap server "imap.server"
action "myimapaction" imaps server "imap.server"
port "8993" user "user" pass "pass" folder "folder"
action "myimapaction" imaps server "imap.server"
user "user" pass "pass" no-verify no-login
6.5 SMTP -----------------------------------------------------------------------
An action may be defined to pass mail on over SMTP. The server host must be
specified and optionally the port and string to pass to the server with the
RCPT TO and MAIL FROM commands. If the port is not specified it defaults to
"smtp". Examples include:
action "mysmtpaction" smtp server "smtp.server"
action "mysmtpaction" smtp server "smtp.server" port 587
action "mysmtpaction" smtp
server "smtp.server" port "submission" from "bob@server.com"
action "mysmtpaction" smtp server "smtp.server" to "me@somewhere"
6.6 Write, pipe, exec and append -----------------------------------------------
Actions may be defined to write or append a mail to a file, to pipe it to a
shell command, or merely to execute a shell command. The append action appends
to and write overwrites the file. % tokens are replaced in the file or command
as for maildir and mbox actions.
Examples are:
action "mywriteaction" write "/tmp/file"
action "myappendaction" append "/tmp/file"
action "mypipeaction" pipe "cat > /dev/null"
action "domaildirexec" exec "~/.fdm.d/my-special-script %[mail_file]"
Pipe and exec commands are run as the command user (by default the user who
invoked fdm).
6.7 stdout ---------------------------------------------------------------------
fdm can write mails directly to stdout, using the 'stdout' action:
action "so" stdout
6.8 Rewriting mail -------------------------------------------------------------
Mail may be altered by passing it to a rewrite action. This is similar to
the pipe action, but the output of the shell command to stdout is reread by fdm
and saved as a new mail. This is useful for such things as passing mail
through a spam filter or removing or altering headers with sed. Note that
rewrite only makes sense on filtering rules where the continue keyword is
specified, or where multiple actions are used (see the next section for details
of this). Possible rewrite action definitions are:
action "myspamaction" rewrite "bmf -p"
action "mysedaction" rewrite "sed 's/x/y/'"
6.9 Adding or removing headers -------------------------------------------------
Simple actions are provided to add a header to a mail:
action "lines" add-header "Lines" value "%[lines]"
Or to remove all instances of a header from mail:
action "del-ua" remove-header "user-agent"
action "rmhdr" remove-header "x-stupid-header"
action "remove-headers" remove-headers { "X-*" "Another-Header" }
6.10 Tagging -------------------------------------------------------------------
Mails may be assigned one of more tags manually using the tag action type. For
example,
match account "my*" tag "myaccts"
match "^User-Agent:[ \t]*(.*)" tag "user-agent" value "%1"
The tag is attached to the mail with the specified value, or no value if none
is provided.
6.11 Compound actions ----------------------------------------------------------
Compound actions may be defined which perform multiple single actions. They
are similar to standard single actions but multiple actions are provided using
{}. For example,
action "multiple" {
add-header "X-My-Header" value "Yay!"
mbox "mbox2"
}
action "myaction" users { "bob" "jim" } {
rewrite "rev"
maildir "%h/%u's maildir"
}
Compound action are executed from top-to-bottom, once for each user. Note that
the effects are cumulative: the second example above would deliver a mail
rewritten once to 'bob' and rewritten again (ie, twice) to 'jim'. If this is
not desired, seperate actions must be used.
6.12 Chained actions -----------------------------------------------------------
An action may call other named actions by reusing the 'action' keyword:
action "abc" action "def"
action "an_action" {
rewrite "rev"
action "another_action"
action "yet_more_actions"
}
There is a hard limit of five chained actions in a sequence to prevent infinite
loops.
7 Filtering mail ===============================================================
Mail is filtered by defining a set of filtering rules. These rules tie together
mail fetched from an account and passed to one or more actions. Rules are
evaluated from top-to-bottom of the file, and evaluation stops at the first
matching rule (unless the continue keyword is specified).
The general form of a filtering rule is:
match <conditions> [<users>] <actions> [continue]
The optional <users> item is specified as for an action definition. If users
are specified on a filtering (match) rule, they override any specified on the
action or account.
The <conditions> item is set of conditions against which the match may be
specified, each condition returns true or false. Conditions are described in
the next few sections. Aside from the 'all' condition, which is a special case,
conditions may be chained as an expression using 'and' and 'or', in which case
they are evaluated from left to right at the same precedence, or prepended with
'not' to invert their outcome.
The <actions> item is a list of actions to execute when this rule matches.
It is in the same list format: 'action "name"' or 'actions { "name1" "name2" }'.
It may also be a lambda (inline) action, see the section below.
If a rule with the 'continue' keyword matches, evaluation does not stop after
the actions are executed, instead subsequent rules are matched.
7.1 Nesting rules --------------------------------------------------------------
Filtering rules may be nested by using the special form:
match <conditions> [<accounts>] {
match ...
}
If the conditions on the outer rule match, the inner rules are evaluated. If
none of the inner rules match (or they all specify the 'continue' keyword)
evaluation continues outside to rules following the nested rule, otherwise it
stops.
7.2 Lambda actions -------------------------------------------------------------
Lambda actions are unnamed actions included inline as part of the filtering
rule. This can be convenient for actions which do not need to be used multiple
times. Lambda actions are specified as a combination of the rule and an action
definition. For example:
match all action maildir "mymaildir"
match all actions {
rewrite "rev"
tag "reversed"
} continue
7.3 The all condition ----------------------------------------------------------
The all condition matches all mail.
Examples include:
match all action "default"
match all rewrite "rewaction" continue
7.4 Matched and unmatched ------------------------------------------------------
The matched and unmatched conditions are used to match mail that has matched
or has not matched previous rules and been passed on with the 'continue'
keyword. For example,
match "myregexp" action "act1" continue
# This rule will match only mails that also matched the first.
match matched action "act2"
# This rule will match only mails that matched neither of the first two.
match unmatched action "act3"
7.5 Matching by account --------------------------------------------------------
The account condition matches a list of accounts from which the mail was
fetched. It is specified as either a single account ('account "name"') or a list
of accounts ('accounts { "name1" "name2" }'). fnmatch(3) wildcards may also be
used. Examples include:
match "blah" accounts { "pop3" "imap" } action "go!"
match matched and account "myacc" action drop
7.6 Matching a regexp ----------------------------------------------------------
Matching against a regexp is the most common form of condition. It takes the
following syntax:
[case] <regexp> [in headers|in body]
The 'case' keyword instructs fdm to match the regexp case sensitively rather
than the default of case insensitivity. The 'in headers' or 'in body' keywords
make fdm search only the headers or body of each mail, the default is to match
the regexp against the entire mail. Any multiline headers are unwrapped onto
a single line before matching takes place and the process reversed afterwards.
The regexp itself is an extended regexp specified as a simple string, but care
must be taken to escape \s and "s properly.
Examples include:
match "^From:.*bob@bobland\\.bob" in headers account "pop3" action "act"
match ".*YAHOO.*BOOTER.*" in body action "junk"
7.7 Matching bracket expressions -----------------------------------------------
The results of any bracket expressions within the last regexp match are
remembered, and may be made use of using the 'string' condition, or used to
construct an action name, maildir or mbox path, etc. The bracket expressions
may be substituted using the %0 to %9 tokens. For example,
match "^From:.*[ \t]([a-z]*)@domain" in headers action "all" continue
match string "%1" to "bob.*" action "bobmail"
match "^From:.*[ \t]([a-z]*)@domain" in headers action "all" continue
match all action "%1mail"
This is particularly useful in combination with nested rules (see later):
bracket expressions in a regexp on the outer rule may be compared on inner
rules.
Note that %0 to %9 are used only for 'regexp' rules. Regexps that are part of
'command' rules use the 'command0' to 'command9' tags.
7.8 Matching by age or size ----------------------------------------------------
Mail may be matched based on its age or size. An age condition is specified as
follows:
age [<|>] <age> [hours|minutes|seconds|days|months|years]
If '<' is used, mail is matched if it is younger than the specified age. If '>',
if it is older. The <age> item may be a simple number of seconds, or suffixed
with a unit. Examples are:
match age < 3 months actions { "act1" "act2" }
match age > 100 hours action "tooold"
The age is extracted from the 'Date' header, if possible. To match mails for
which the header was invalid, the following form may be used:
match age invalid action "baddate"
The size condition is similar:
size [<|>] <size> [K|KB|kilobytes...]
Where <size> is a simple number in bytes, or suffixed with 'K', 'M' or 'G' to
specify a size in kilobytes, megabytes or gigabytes, such as:
match size < 1K action "small"
match size > 2G action "whoa"
7.9 Using a shell command ------------------------------------------------------
Mail may be matched using the result of a shell command. This condition follows
the form:
[exec|pipe] <command> returns (<return code>, [case] <stdout regexp>)
If 'exec' is used, the command is executed. If 'pipe', the mail is piped to the
command's stdin. The <command> is a simple string. % tokens are replaced as
normal.
Any of the <return code> or <stdout regexp> or both may be specified. The
<return code> is a simple number which is compared against the return code from
the command, the <stdout regexp> is a regexp that is matched case insensitively
against each line output by the command on stdout. The result of any bracket
expressions in the stdout regexp are saved as 'command0' to 'command9' tags on
the mail.
Any output on stderr is logged by fdm, so 2>&1 must be included in the command
in order to apply the regexp to it.
Examples:
match exec "true" (0, ) action "act"
match not pipe "grep Bob" (1, ) action "act"
match pipe "myprogram" (, "failed") actions { "act1" "act2" }
match exec "blah" (12, "^Out") action "meep"
7.10 Attachments ---------------------------------------------------------------
There are five conditions available to filter based on the size, quantity, type
and name of attachments. They are all prefixed with the 'attachment'
keyword. Two compare the overall number of attachments:
The 'attachment count' conditions matches if the number of attachments is
equal to, not equal to, less than or greater than the specified number:
match attachment count == 0 action "action"
match attachment count != 10 action "action"
match attachment count < 2 action "action"
match attachment count > 7 action "action"
The 'attachment total-size' condition is similar, but compares the total
size of all the attachments in a mail:
match attachment total-size < 4096 kilobytes action "action"
match attachment total-size > 1M action "action"
There are also three conditions which matches if any individual attachment
fulfils the condition: 'any-size' to match if any attachment is less than or
greater than the given size, and 'any-type' and 'any-name' which compare the
attachment MIME type and name attribute (if any) using fnmatch(3):
match attachment any-size < 2K action "action"
match attachment any-type "*/pdf" action "action"
match attachment any-name "*.doc" action "action"
7.11 Matching tags -------------------------------------------------------------
The existence of a tag may be tested for using the 'tagged' condition:
match tagged "mytag" action "a"
match tagged "ohno" and size >1K action drop
Or the tags value matched using the 'string' match type (in a similar way to
matching bracket expressions):
match string "%[group]" to "comp.lang.c" action "clc"
match string "%u" to "bob" action "bob"
7.12 Using caches --------------------------------------------------------------
fdm has builtin support for maintaining a cache of string keys, including
appending to a cache, checking if a key is present in a cache, and expiring
keys from a cache once they reach a certain age.
These caches should not be confused with the NNTP cache file. Key caches are
referenced by filename and must be declared before use:
cache "%h/path/to/cache"
cache "~/.fdm.db" expire 1 month
If the expiry time is not specified, items are never expired from the cache.
Once declared, keys may be added to the cache with the 'add-to-cache' action:
match all action add-to-cache "~/my-cache" key "%[message_id]"
Or removed with the 'remove-from-cache' action:
match all action remove-from-cache "~/my-cache" key "%[message_id]"
And the existence of a key in the cache may be tested for using the 'in-cache'
condition:
match in-cache "~/my-cache" key "%[message_id]" action "foundincache"
Any string may be used as key, but the message-id is most often useful. Note
that the key may not be empty, so care must be taken with messages without
message-id (such as news posts fetched with NNTP).
Caches may be used to elimate duplicate messages using rules similar to those
above:
$db = "~/.fdm-duplicates.db"
$key = "%[message_id]"
cache $db expire 2 weeks
match not string $key to "" {
match in-cache $db key $key action maildir "%h/mail/duplicates"
match all action add-to-cache $db key $key continue
}
7.13 Cache commands ------------------------------------------------------------
fdm includes a number of commands to manipulate caches from the command-line.
These are invoked with the 'cache' keyword followed by a command. The
following commands are supported:
cache add <path> <string>
cache remove <path> <string>
These add or remove <string> as a key in the cache <path>.
cache list [<path>]
This lists the number of keys in a cache, or in all caches declared
in the configuration file if <path> is omitted.
cache dump <path>
This dumps the contents of the cache <path> to stdout. Each key is
printed followed by a space and the timestamp as Unix time.
cache clear <path>
Delete all keys from a cache.
Examples:
$ fdm cache list
/export/home/nicholas/.fdm.d/duplicates: 4206 keys
$ touch my-cache
$ fdm cache dump my-cache
$ fdm cache add my-cache test
$ fdm cache dump my-cache
test 1195072403
8 Setting options ==============================================================
fdm has a number of options that control its behaviour. These are defined
using the set command:
set <option> [<value>]
In addition to the options below, some environment variables may be used to
control fdm. If TMPDIR is present, its value will be used instead of /tmp for
saving temporary files.
The possible options are:
- maximum-size <size>
This specifies the maximum size of mail that fdm will accept. The default is 32
MB. Note that fdm may be storing a number of mails simultaneously, up to the
'queue-high' setting (doubled if rewrite is used) for each account, so care
should be taken when increasing this option.
If mail over the maximum size is encountered, fdm will abort with an error,
without deleting the mail from the server (unless 'delete-oversized' is set).
- delete-oversized
If this option is set, fdm will delete oversized mail from the server rather
than leaving it for the user to sort out.
- queue-high <number>
This sets the number of mails fdm will queue simultaneously. The default is
two. Once this limit is reached, fdm will cease fetching mail until the number
queued drops to the value of the 'queue-low' setting.
fdm queues mails so that they may be processed while waiting for data from the
server. Changing this option can increase (or decrease) performance, it's
usefulness varies wildly with the ruleset, speed of connection and remote host,
and the local hardware.
The maximum possible value is currently 50. To ensure fdm fetches and delivers
mail sequentially, set this option to one.
- queue-low <number>
This sets the number of mails fdm will wait for the queue to drop to before
restarting fetching after the 'queue-high' limit has been reached. The default
is three-quarters of the 'queue-high' setting.
- allow-multiple
This option makes fdm ignore the lock file, similar to the '-m' command line
option.
- lock-file <path>
This option specifies a string to use as the path of the lock file. For example:
set lock-file "/tmp/my-lock-file"
- command-user <user>
This specifies the user used to run exec and pipe actions. By default it is
the user who invoked fdm.
- default-user <user>
This specifies the default user to use if run as root and no users are specified
on the action or filtering rule. This option may be overriden with the '-u'
flag on the command line.
- lock-types [fcntl] [flock] [dotlock]
These specify the type of locking to use when writing to mboxes. fcntl and
flock locking are mutually exclusive, but dotlock may be used with either.
Some NFS servers do not support fcntl. The default is flock only. Example:
set lock-types fcntl dotlock
- proxy <url>
This specifies a URL to proxy outgoing connections through. See the section
on proxying below.
- unmatched-mail [drop|keep]
This option controls how fdm should deal with mail that reaches the end of
the ruleset (doesn't match any rules, or only rules with the 'continue'
keyword). If 'drop' is specified, such mail is dropped. If 'keep', it is
kept. The default is to keep the mail, and issue a warning.
- purge-after <message count>
The 'purge-after' option instructs fdm to attempt to purge deleted mail after
the specified number of mails has been fetched. This is useful to limit the
number of mails refetched on the next run if the connection fails. It can have
a large effect on performance, particularly if the message count is set to a
low number.
Note that for POP3, purging deleted mail involves disconnecting and
reconnecting from the server; some POP3 servers refuse reconnections if too
many are made too quickly, so this option should be used with care.
- no-received
If this option is present, fdm will not insert a 'Received' header into fetched
mail.
- no-create
When this option is specified, fdm will not attempt to create maildir and
mboxes or directories above them.
- file-umask [user|<umask>]
This specifies the umask to use when creating files. 'user' means to use the
umask set when fdm is started, or it may be specified as a three-digit octal
number. The default is 077.
- file-group [user|<group>]
This option allows the default group ownership of files and directories created
by fdm to be specified. 'group' may be a group name string or a numeric gid. If
'user' is used, or if this option is not set in the configuration file, fdm
does not attempt to set the group of new files and directories.
- timeout <time>
This controls the maximum time to wait for a server to send data before closing
a connection. The default is 900 seconds.
- verify-certificates
This instructs fdm to verify SSL certificates for all SSL connections, see the
previous section on SSL certificate verification.
9 Archiving and searching mail =================================================
As fdm can fetch from maildirs, it can be used to filter mail from one maildir
into another, for example to archive older mail (with drop) or to search for
mail matching a particular pattern (with keep). The 'age' condition, and the
%[maildir] and time/date tags are particularly useful for archiving. For
example, to archive all mail older than 30 days by quarter, something like this
may suffice (the account restriction can be dropped if being used in a
single-purpose configuration file):
account "archive" disabled maildir "source-maildir"
match account "archive" and age > 30 days action mbox "%[maildir]q%Q"
match account "archive" action keep
Then, fdm may be run to move the mail:
fdm -vaarchive fetch
To search mail, similar rules may be used, but all mail should be kept, in this
example by marking the account with 'keep' so that mail is kept no matter what
rules it matches:
account "search" disabled maildir "source-maildir" keep
action "found" mbox "search-results"
match "^From.*Bob" in headers account "search" action "found"
match account "search" action keep
All mail matching the regexp will be copied to the target mbox. There are
several other ways to write this ruleset.
10 Using fdm behind a proxy ====================================================
fdm may be used behind a proxy by specifying the proxy URL using the 'proxy'
option. HTTP and SOCKS5 proxies are supported:
set proxy "http://proxy.server/"
set proxy "http://proxy.server:port/"
set proxy "socks5://proxy.server/"
set proxy "socks5://proxy.server:port/"
set proxy "socks5://user@proxy.server/"
set proxy "socks5://user:pass@proxy.server/"
Authentication is not supported for HTTP proxies.
11 Bug reports and queries =====================================================
Bug reports, queries, suggestions and code are best sent by email to:
nicm@users.sf.net
Bug reports may also be registered on Sourceforge, but they are likely to be
dealt with much faster by email, particularly as it is easier to elicit
further information if it is required.
A mailing list is available for fdm users, see:
https://lists.sourceforge.net/lists/listinfo/fdm-users
12 Frequently asked questions ==================================================
12.1 Why? ----------------------------------------------------------------------
Two main reasons:
1. I didn't like the existing tools. That is not to say that other tools are
bad or aren't useful, merely that fdm meets my needs better.
And more importantly:
2. I disliked the fact that as a home user with a relatively simple setup I
had to have five programs to deal with mail: sendmail, fetchmail, procmail,
archivemail, mutt; all with different, variously broken configuration file
syntaxes, and weird quirks. I now have three programs: sendmail, fdm and
mutt, and fewer weird configurations to learn and potential problems. I can
also do some quite complex things without reaching for additional tools like
formail and reformail.
12.2 How do I write regexps? ---------------------------------------------------
See the re_format(7) man page. It is online here (for OpenBSD):
http://www.openbsd.org/cgi-bin/man.cgi?re_format
There are also a number of books and probably websites on the subject.
12.3 Keep doesn't work with gmail! ---------------------------------------------
This is because gmail is broken, see:
http://pyropus.ca/software/getmail/faq.html#faq-notabug-gmail-bug
12.4 Why doesn't fdm run as a daemon? ------------------------------------------
Because that is what cron is for: it comes as standard with all sensible
operating systems, and by using it I avoid a lot of code to deal with signals,
configuration reload, extra configuration options and general other crap
related to running all the time. Daemonising is for servers, for stuff that
needs to run periodically, use cron.
12.5 Why does fdm fork child processes when not running as root? ---------------
Because one design is much cleaner and easier to work with than two. And it
has a negligible practical effect on performance in any case.
12.6 Can fdm get rid of that crap in []s some mailing lists add to subjects? ---
Yes! Rewrite the mail using sed to remove the crap, for example:
action "full-disclosure" {
rewrite "sed 's/^\\(Subject:.*\\)\\[Full-disclosure\\] /\\1/'"
maildir "%h/mail/full-disclosure"
}
match "^List-Id:.*<full-disclosure\\.lists\\.grok\\.org\\.uk>" in headers
action "full-disclosure"
12.7 I'm building on Linux and it complains about REG_STARTEND. ----------------
Older versions (pre-2005) of glibc don't support the REG_STARTEND flag to
regexec(3). Either upgrade to a later version of glibc, or use PCRE.
12.8 Should I use PCRE or standard POSIX regexps? What's the difference? -------
PCRE is a library providing "perl-compatible" regexps. These are broadly
compatible with POSIX extended regexps, but with a number of extensions based
on perl regexps.
Unless you want or need some of the extensions, there is generally no
compelling reason to choose one over the other. PCRE is faster than some
POSIX regexp implementations, but few rulesets will include sufficient
regexps for this to make any difference. PCRE has had some security
problems, but most regexp implementations pose a similar risk for their
complexity if nothing else; fdm performs regexp matching as non-root in
any case.
The Debian package and FreeBSD port both use PCRE by default.
Because I hate maintaining and testing two sets of code, there is a strong
possibility that PCRE may become the fdm default at some point.
================================================================================
$Id: MANUAL.in,v 1.74 2008/12/22 16:20:05 nicm Exp $
|