---------------------------------------------

Mail::SpamAssassin::Plugin::LDAPfilter

August 20 , 2005

LDAPfilter is a SpamAssassin plugin that reads a variety of common markers from incoming email messages and then queries a shared LDAP directory for spam or ham tags associated with those markers. This approach is similar to other comprehensive blacklist and whitelist models that can filter email according to one or more attributes, but the use of LDAP allows for high levels of scaleability that goes well beyond what most other approaches are able to provide.

Specifically, the LDAPfilter module examines incoming messages for each of the following attributes:

Administrators can selectively enable or disable any of the above attributes. In those cases where multiple attribute values may be present (as with multiple To: or CC: recipients), LDAPfilter allows the administrator to specify a cutoff number.

LDAPfilter builds multi-part searches that include the exact attribute value and all of the likely parent values. This allows administrators to build filters for any scope, and even for overlapping scopes. For example, if a From header field contains the email address of user@example.co.uk, then LDAPfilter will construct a search string that uses that email address, the example.co.uk mail domain, as well as the co.uk and uk parent domains. For data that uses an IP address, LDAPfilter starts the search string with the host address and a /32 subnet mask appended to the end, but also applies all of the subnet maks between /29 and /8 to the address to calculate the parent networks and then includes those addresses in the search string. This recursion feature allows administrators to specify filters for individual assets or entire portions of the Internet, as may be appropriate for a specific filter. Recursion depth can also be tweaked if the administrator desires.

The string values are stored in an LDAP attribute called "mailFilterName". Entries in the LDAP directory can use mailFilterName as a naming attribute, or the entries can use another naming attribute (such as CommonName) with mutliple mailFilterName attributes providing multiple matches to the entry. For example, a "cn=Spammers" entry may have hundreds of mailFilterName atributes that each identify a specific domain name, while an entry for a local network that only has a single mailFilterName for the subnet address might simply use that attribute for the naming attribute. The point here is that LDAPfilter searches by attribute and does not make any decisions based on how the entry is named.

As LDAPfilter parses through the incoming email message, it issues search requests for the entry by name and also by filter type. More specifically, entries can have multiple filter weights associated with them, with each weight being incorporated into the final score as the message data is analyzed.. For example, an LDAP entry with a mailFilterName attribute for example.com can have filter attributes that apply to the SMTP HELO string and a URI in the message body (among others), with each filter value being returned as LDAPfilter works through the message data. As such, it's possible for messages to be weighted multiple times, based on the full message.

Furthermore, each filter can have have up to four scoring values, ranging from full blacklist to full whitelist, with two shades of grey in between. Each of the filter values will be converted to numeric scores when SpamAssassin finishes the message processing. In this regard, it's possible for a message to be blacklisted due to one value, but whitelitsted due to another, and for the final score to be neutral due to the sum value of zero.

Installation

To use this plugin, perform the following steps:

  1. Review the manual page for LDAPfilter to learn about the modules configuration options.
  2. Download spamassassin-ldapfilter.0.9.tar.gz to a temporary directory on the SpamAssassin host system.
  3. Expand the archive with the command tar -xvzf spamassassin-ldapfilter.0.9.tar.gz, and copy the files from the spamassassin-ldapfilter directory that is created to the main SpamAssassin directory.
  4. Import the spamAssassinFilter.schema file into the LDAP server's configuration, and restart the LDAP server if necessary. The schema definition file is available separately if you wish to review it beforehand.
  5. Change to the main SpamAssassin directory, and use a text editor of your choice to review the contents of the ldapfilter.cf configuration file, especially the LDAP session options. By default, LDAPfilter will try to use DNS SRV resource records to locate a local LDAP server, and will then attempt to bind to that server with anonymous credentials. If either of these actions fail, LDAPfilter will exit gracefully. If you need to explicitly identify the LDAP server, the transport protocol, or the authentication credentials to use for the LDAP queries, edit the appropriate fields in the ldapfilter.cf configuration file.
  6. Execute the command spamassassin --lint to verify that SpamAssassin operates as expected.
  7. Create the appropriate entries in your LDAP server, and assign the appropriate security permissions.

Once the software has been installed and configured, incoming messages will begin to be processed through LDAPfilter.

Debug Output

LDAPfilter implements support for SpamAssassin debug output, which can be activated with the --debug parameter to the SpamAssassin command-line. The module-specific debug messages are marked with the string "LDAPfilter:" as shown in the example below:

LDAPfilter: SMTP client IP address determined as "209.237.227.199/32"
LDAPfilter:   searching for (|(mailFilterName=209.237.227.199/32)
                (mailFilterName=209.237.227.192/29)(mailFilterName=209.237.227.192/28)
                (mailFilterName=209.237.227.192/27)(mailFilterName=209.237.227.192/26)
                (mailFilterName=209.237.227.128/25)(mailFilterName=209.237.227.0/24)
                (mailFilterName=209.237.226.0/23)(mailFilterName=209.237.224.0/22)
                (mailFilterName=209.237.224.0/21)(mailFilterName=209.237.224.0/20)
                (mailFilterName=209.237.224.0/19)(mailFilterName=209.237.192.0/18)
                (mailFilterName=209.237.128.0/17)(mailFilterName=209.237.0.0/16)
                (mailFilterName=209.236.0.0/15)(mailFilterName=209.236.0.0/14)
                (mailFilterName=209.232.0.0/13)(mailFilterName=209.224.0.0/12)
                (mailFilterName=209.224.0.0/11)(mailFilterName=209.192.0.0/10)
                (mailFilterName=209.128.0.0/9)(mailFilterName=209.0.0.0/8))
LDAPfilter:   no entries were returned
LDAPfilter: SMTP client domain name determined as "hermes.apache.org"
LDAPfilter:   searching for (|(mailFilterName=hermes.apache.org)
                (mailFilterName=apache.org)(mailFilterName=org))
LDAPfilter:   "cn=Friendly Nets,ou=Mail-Filters,ou=Serv..." has a
                spamAssassinFilterClient attribute with the value of LIGHTLISTED
LDAPfilter: SMTP client HELO identifier determined as "mail.apache.org"
LDAPfilter:   searching for (|(mailFilterName=mail.apache.org)
                (mailFilterName=apache.org)(mailFilterName=org))
LDAPfilter:   "cn=Friendly Nets,ou=Mail-Filters,ou=Serv..." does not have a
                spamAssassinFilterHelo attribute
-- 30 --
Copyright © 2010-2017 Eric A. Hall.
---------------------------------------------