SpamikazeWiki:

Spamikaze consists of various scripts, many of which are needed for proper operation:

Spamikaze's spam trap software

The passivetrap.pl script analyses mail coming into spam traps and finds the IP address that delivered the message to your mail servers and adds that IP address to the database.

To call the passivetrap.pl script automatically from a spam trap email address in sendmail, postfix, zmailer or exim, simply add lines like the following to the email aliases file (usually in /etc/aliases).

spamtrap:     "|/opt/spamikaze/scripts/passivetrap.pl"
ionlygetspam: "|/opt/spamikaze/scripts/passivetrap.pl"

This way all email to spamtrap@yourdomain is sent into the passivetrap script automatically. You could even turn a whole subdomain into one big spamtrap, sending all addresses in that subdomain into passivetrap.pl. Eg. if your domain is example.com, you could create the spamtrap.example.com subdomain and use that for spamikaze only.

Of course, you will need to make sure the spammers know about the email addresses you use as spam traps. Some obvious methods are posting the address on usenet, putting the address on a web page or filling the address into unsubscribe forms in spam. A less obvious (but very effective) way is to look at your mail logs. Chances are spammers are already trying to send email to nonexisting accounts at your domain. Using the busiest nonexisting accounts as spam trap addresses is very effective, because the spammers are already trying to send mail to them!

Note: if you want to feed an entire mailbox into passivetrap, you'll have to use formail, like this:

$ formail -s /path/passivetrap.pl < /path/spam.mbox

Database Expiry

The fact that a certain IP address sent email into a spamtrap becomes irrelevant after a certain time. After all, if an IP address hasn't sent any spam recently, why block email from there?

The expire.pl script should be run periodically, at least once a day, to take IP addresses that haven't sent spam recently off the list. Note that the history in the database is preserved so the listing web script will still show things.

Named, sendmail, rbldnsd & text scripts

These scripts export the currently listed IP addresses in the form of a bind zone file, a sendmail access db and a plaintext file respectively.

The named.pl script needs to be configured in the Spamikaze config file. Note that after the zone file is regenerated, you will still need to tell bind to reload the zone in question, by issuing the rndc reload command.

Since the output of the plaintext script doesn't need any configuration, the file where the plaintext list of IP addresses is exported is specified on the commandline, like this:

$ ./text.pl /tmp/spamikaze-list.txt


CategoryDocumentation

SpamikazeWiki: SpamikazeOperations (last edited 2017-12-29 04:15:28 by localhost)