Copyright 2006, 2024 by Anthony Howe. All rights reserved.
THIS IS MAIL FILTERING SOFTWARE AND WILL BLOCK MAIL THAT FAILS TO PASS A GIVEN SET OF TESTS. SNERTSOFT AND THE AUTHOR DO NOT ACCEPT ANY RESPONSIBLITY FOR MAIL REJECTED OR POSSIBLE LOSS OF BUSINESSS THROUGH THE USE OF THIS SOFTWARE. BY INSTALLING THIS SOFTWARE THE CLIENT UNDERSTANDS AND ACCEPTS THE RISKS INVOLVED.
ClamAV is a well established free open-source anti-virus scanner. This Sendmail mail filter provides an interface between sendmail and clamd servers in order to scan and reject infected email.
The primary difference betwen milter-clamc from clamav-milter is in its use of the access database for black/white list support (see access-db=) common to the SnertSoft suite of milters. By default milter-clamc rejects infected messages, or by using the policy= option infected messages can be tagged, discarded, or quarantined using Sendmail's quarantine queue.
milter-clamc [options ...] [arguments ...]
Options can be expressed in four different ways. Boolean options are expressed as +option or -option to turn the option on or off respectively. Options that required a value are expressed as option=value or option+=value for appending to a value list. Note that the +option and -option syntax are equivalent to option=1 and option=0 respectively. Option names are case insensitive.
Some options, like +help or -help, are treated as immediate actions or commands. Unknown options are ignored. The first command-line argument is that which does not adhere to the above option syntax. The special command-line argument -- can be used to explicitly signal an end to the list of options.
The default options, as shown below, can be altered by specifying them on the command-line or within an option file, which simply contains command-line options one or more per line and/or on multiple lines. Comments are allowed and are denoted by a line starting with a hash (#) character. If the file= option is defined and not empty, then it is parsed first followed by the command-line options.
Note that there may be additional options that are listed in the option summary given by +help or -help that are not described here.
The type and location of the read-only access key-value map. It provides a centralised means to black and white list hosts, domains, mail addresses, etc. The following methods are supported:
text!/path/map.txt R/O text file, memory hash
/path/map.db Berkeley DB hash format
db!/path/map.db Berkeley DB hash format
db!btree!/path/map.db Berkeley DB btree format
sql!/path/database An SQLite3 database
socketmap!host:port Sendmail style socket-map
socketmap!/path/local/socket Sendmail style socket-map
socketmap!123.45.67.89:port Sendmail style socket-map
socketmap![2001:0DB8::1234]:port Sendmail style socket-map
If :port is omitted, the default is 7953.
The access-db contains key-value pairs. Lookups are performed from most to least specific, stopping on the first entry found. Keys are case-insensitive.
An IPv4 lookup is repeated several times reducing the IP address by one octet from right to left until a match is found.
tag:192.0.2.9
tag:192.0.2
tag:192.0
tag:192
An IPv6 lookup is repeated several times reducing the IP address by one 16-bit word from right to left until a match is found.
tag:2001:0DB8:0:0:0:0:1234:5678
tag:2001:0DB8:0:0:0:0:1234
tag:2001:0DB8:0:0:0:0
tag:2001:0DB8:0:0:0
tag:2001:0DB8:0:0
tag:2001:0DB8:0:0
tag:2001:0DB8:0
tag:2001:0DB8
tag:2001
A domain lookup is repeated several times reducing the domain by one label from left to right until a match is found.
tag:[ipv6:2001:0DB8::1234:5678]
tag:[192.0.2.9]
tag:sub.domain.tld
tag:domain.tld
tag:tld
tag:
An email lookup is similar to a domain lookup, the exact address is first tried, then the address's domain, and finally the local part of the address.
tag:account@sub.domain.tld
tag:sub.domain.tld
tag:domain.tld
tag:tld
tag:account@
tag:
If a key is found and is a milter specific tag (ie. milter-clamc-Connect, milter-clamc-To), then the value is processed as a pattern list and the result returned. The Sendmail variants cannot have a pattern list. A pattern list is a whitespace separated list of pattern-action pairs followed by an optional default action. The supported patterns are:
[network/cidr]action Classless Inter-Domain Routing
!pattern!action Simple fast text matching.
/regex/action POSIX Extended Regular Expressions
The CIDR will only ever match for IP address related lookups.
A !pattern! uses an astrisk (*) for a wildcard, scanning over zero or more characters; a question-mark (?) matches any single character; a backslash followed by any character treats it as a literal (it loses any special meaning).
!abc! exact match for 'abc'
!abc*! match 'abc' at start of string
!*abc! match 'abc' at the end of string
!abc*def! match 'abc' at the start and match 'def' at the end, maybe with stuff in between.
!*abc*def*! find 'abc', then find 'def'
For black-white lookups, the following actions are recognised: OK or RELAY (allow), REJECT or ERROR (deny), DISCARD (accept & discard), SKIP or DUNNO (stop lookup, no result), and NEXT (opposite of SKIP, resume lookup). Its possible to specify an empty action after a pattern, which is treated like SKIP returning an undefined result. Other options may specify other actions.
Below is a list of supported tags. Other options may specify additional tags.
milter-clamc-Connect:client-ip value § Can be a pattern list.
milter-clamc-Connect:[client-ip] value § Can be a pattern list.
milter-clamc-Connect:client-domain value § Can be a pattern list.
milter-clamc-Connect: value § Can be a pattern list.
Connect:client-ip value
Connect:[client-ip] value
Connect:client-domain value
All mail sent by a connecting client-ip, unresolved client-ip address or IP addresses that resolve to a client-domain are black or white-listed. These allows you to white-list your network for mail sent internally and off-site, or connections from outside networks. Note that Sendmail also has special semantics for Connect: and untagged forms.
milter-clamc-Auth:auth_authen value § Can be a pattern list.
milter-clamc-Auth: value § Can be a pattern list.
All mail from the authenticated sender, as given by sendmail's {auth_authen} macro, is black or white-listed. The string searched by the pattern list will be the sender-address. The empty form of milter-clamc-Auth: allows for a milter specific default only when {auth_authen} is defined.
milter-clamc-From:sender-address value § Can be a pattern list.
milter-clamc-From:sender-domain value § Can be a pattern list.
milter-clamc-From:sender@ value § Can be a pattern list.
milter-clamc-From: value § Can be a pattern list.
From:sender-address value
From:sender-domain value
From:sender@ value
All mail from the sender-address, sender-domain, or that begins with sender is black or white-listed. In the case of a +detailed email address, the left hand side of the +detail is used for the sender@ lookup. Note that Sendmail also has special semantics for From: and untagged forms.
milter-clamc-To:recipient-address value § Can be a pattern list.
milter-clamc-To:recipient-domain value § Can be a pattern list.
milter-clamc-To:recipient@ value § Can be a pattern list.
milter-clamc-To: value § Can be a pattern list.
Spam:recipient-address value (FRIEND or HATER are recognised)
Spam:recipient-domain value (FRIEND or HATER are recognised)
Spam:recipient@ value (FRIEND or HATER are recognised)
To:recipient-address value
To:recipient-domain value
To:recipient@ value
All mail to the recipient-address, recipient-domain, or that begins with recipient is black or white-listed. In the case of a +detailed email address, the left hand side of the +detail is used for the recipient@ lookup. Note that Sendmail also has special semantics for Spam:, To:, and untagged forms.
The milter-clamc-Connect: and milter-clamc-To: tags provide a milter specific means to override the Sendmail variants. For example, you normally white list your local network through any and all milters, but on the odd occasion you might want to actually scan mail from inside going out, without removing the Connect: tag that allows Sendmail to relay for your network or white listing for other milters. So for example if you have Sendmail tags like:
To:mx.example.com RELAY
You might have to add milter specific overrides in order to make sure the mail still gets filtered:
To:mx.example.com RELAY
milter-clamc-To:mx.example.com SKIP
Some additional examples:
milter-clamc-Connect:80.94 [80.94.96.0/20]OK REJECT
Accept connections from the netblock 80.94.96.0/20 (80.94.96.0 through to 80.94.111.255) and rejecting anything else in 80.94.0.0/16.
milter-clamc-Connect:192.0.2 /^192\.0\.2\.8[0-9]/OK REJECT
Accept connections from 192.0.2.80 through to 192.0.2.89, reject everything else in 192.0.2.0/24.
milter-clamc-To:example.com /^john@.+/OK /^fred\+.*@.*/OK REJECT
Accept mail to john@example.com and fred@example.com when fred's address contains a plus-detail in the address. Reject everything else to example.com.
milter-clamc-To:example.net !*+*@*!REJECT !*.smith@*!REJECT /^[0-9\].*/REJECT
Reject mail to example.net using a plus-detail address or to any user who's last name is "smith" or addresses starting with a digit. No default given, so B/W processing would continue.
Normally when the access.db lookup matches a milter tag, then the value pattern list is processed and there are no further access.db lookups. The NEXT action allows the access.db lookups to resume and is effectively the opposite of SKIP. Consider the following examples:
milter-clamc-To:com /@com/REJECT NEXT
To:com OK
Reject mail to places like compaq.com or com.com if the pattern matches, but resume the access.db lookups otherwise.
milter-clamc-To:aol.com /^[a-zA-Z0-9!#$&'*+=?^_`{|}~.-]{3,16}@aol.com$/NEXT REJECT
To:fred@aol.com OK
AOL local parts are between 3 and 16 characters long and can contain dots and RFC 2822 atext characters except % and /. The NEXT used above allows one simple regex to validate the format of the address and resume lookups of white listed and/or black listed addresses.
Policy to apply if there is a milter or clamd I/O error:
noneAdd aX-milter-clamc-Report:header reporting the anti-virus I/O error and do nothing else.quarantineQuarantine the message. See sendmail's queue management options-qQand-Q.rejectReject the message reporting anti-virus error.discardDiscard the message.
The clamd unix domain socket or internet host[,port]. Note when a unix domain socket is given, then it must be read/write by both clamd and milter-clamc.
The milter or clamd I/O timeout in seconds, 0 for indefinite.
Start as a background daemon or foreground application.
Read the option file before command line options. This option is set by default. To disable the use of an option file, simply say file=''.
Write the option summary to standard output and exit. The output is suitable for use as an option file.
A socket specifier used to communicate between Sendmail and milter-clamc. Typically a unix named socket or a host:port. This value must match the value specified for the INPUT_MAIL_FILTER() macro in the sendmail.mc file. The accepted syntax is:
{unix|local}:/path/to/file A named pipe. (default)
inet:port@{hostname|ip-address} An IPV4 socket.
inet6:port@{hostname|ip-address} An IPV6 socket.
The sendmail/milter I/O timeout in seconds.
The file path of where to save the process-id.
If the message is infected, then apply one of the following policies:
noneAdd aX-milter-clamc-Report:header reporting the anti-virus I/O error and do nothing else.tagTag the message subject and add aX-milter-clamc-Report:header. Seesubject-tag.quarantineQuarantine the message. See sendmail's queue management options-qQand-Q.rejectReject the message reporting anti-virus error.discardDiscard the message.
Quit an already running instance of the milter and exit. This is equivalent to:
kill -QUIT `cat /var/run/milter/milter-clamc.pid`.
Terminate an already running instance of the milter before starting.
The process runtime group name to be used when started by root.
The process runtime user name to be used when started by root.
Allow SMTP authenticated senders to send unscanned mail. See also the milter-clamc-auth: tag (access-db=) for finer granularity of control.
Subject tag prefix for invalid messages. To disable the subject tag specify subject-tag='' or see policy=none.
A comma separated list of how much detail to write to the mail log. Those mark with § have meaning for this milter.
§ all All messages
§ 0 Log nothing.
§ info General info messages. (default)
§ trace Trace progress through the milter.
§ parse Details from parsing addresses or special strings.
debug Lots of debug messages.
§ dialog I/O from Communications dialog
state State transitions of message body scanner.
dns Trace & debug of DNS operations
cache Cache get/put/gc operations.
§ database Sendmail database lookups.
socket-fd socket open & close calls
socket-all All socket operations & I/O
§ libmilter libmilter engine diagnostics
The working directory of the process. Normally serves no purpose unless the kernel option that permits daemon process core dumps is set.
This is the list of possible SMTP responses.
-
553 5.1.0 imbalanced angle brackets in path
The path given for aMAILorRCPTcommand is missing a closing angle bracket -
553 5.1.0 address does not conform to RFC 2821 syntax
The address is missing the angle brackets,<and>, as required by the RFC grammar. -
553 5.1.0 local-part too long
The stuff before the@is too long. -
553 5.1.[37] invalid local part
The stuff before the@sign contains unacceptable characters. -
553 5.1.0 domain name too long
The stuff after the@is too long. -
553 5.1.7 address incomplete
Expecting a domain.tld after the@sign and found none. -
553 5.1.[37] invalid domain name
The domain after the@sign contains unacceptable characters. -
550 5.7.1 connection .+ [.+] blocked
The connection is blacklisted in the sendmailaccess.db. -
550 5.7.1 sender blocked
The sender is blacklisted in the sendmailaccess.db. -
550 5.7.1 recipient blocked
The recipient is blacklisted in the sendmailaccess.db. -
550 5.7.1 anti-virus unavailable
There was an I/O error between the milter and theclamdserver, seemaillogfor details. -
550 5.7.1 message is INFECTED with .*
Theclamdanti-virus server found a virus or worm in the message.
-
Install
SQLitefrom a package if desired. Prior to LibSnert's availability on GitHub, the oldlibsnerttarballs included SQLite, but the GitHub libsnert repository does not, so it needs to be installed separately.milter-clamcdoes not require it, but other milters that need a cache will. -
If you have never built a milter for Sendmail, then please make sure that you build and install
libmilter(or install a pre-built package), which is not built by default when you build Sendmail. Please read thelibmilterdocumentation. Briefly, it should be something like this:cd (path to)/sendmail-8.13.6/libmilter sh Build -c install -
Build LibSnert first, do not disable
sqlite3support; it should find the pre-installed version of SQLite if any. -
Building
milter-clamcshould be:cd com/snert/src git clone https://github.com/SirWumpus/milter-clamc.git cd milter-clamc ./configure --help ./configure make sudo make install -
An example
/usr/local/share/examples/milter-clamc/milter-clamc.mcis supplied. This file should be reviewed and the necessary elements inserted into your Sendmail.mcfile andsendmail.cfrebuilt. Please note the comments on the general milter flags. -
Once installed and configured, start
milter-clamcand then restart Sendmail. An example startup script is provided in/usr/local/share/examples/milter-clamc/milter-clamc.sh.
-
The minimum desired file ownership and permissions are as follows for a typical Linux system. For FreeBSD, NetBSD, and OpenBSD the binary and cache locations may differ, but have the same permissions. Process user
milteris primary member of groupmilterand secondary member of groupsmmsp. Note that the milter should be started asroot, so that it can create a .pid file and .socket file in/var/run; after which it will switch process ownership tomilter:milterbefore starting the accept socket thread./etc/mail/ root:smmsp 0750 drwxr-x--- /etc/mail/access.db root:smmsp 0640 -rw-r----- /etc/mail/sendmail.cf root:smmsp 0640 -rw-r----- /etc/mail/milter-clamc.cf root:root 0644 -rw-r--r-- /var/run/milter/milter-clamc.pid milter:milter 0644 -rw-r--r-- /var/run/milter/milter-clamc.socket milter:milter 0644 srw-r--r-- /var/db/milter-clamc milter:milter 0644 -rw-r--r-- (*BSD) /var/cache/milter-clamc milter:milter 0644 -rw-r--r-- (linux) /usr/local/libexec/milter-clamc root:milter 0550 -r-xr-x---