summaryrefslogtreecommitdiffstats
path: root/libexec/spamd/sdl.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Make blacklist entries override the whitelist. When running spamdmillert2017-10-181-1/+2
| | | | | | | | in greylisting mode, it is not uncommon for an IP to get whitelisted before it shows up on a spam blacklist. With this change, spamd will check its blacklists before adding a WHITE entry to the <spamd-white> pf table. If the IP matches a blacklist, the WHITE entry will be removed. OK phessler@
* Use a binary search to speed up blacklist lookups. OK phessler@millert2017-10-171-2/+2
|
* Use address-family specific lists of addr/mask entries instead ofmillert2015-01-131-26/+32
| | | | | | | | a union that can store either ipv4 or ipv6. The old method used 4x as much memory as was really needed for ipv4. The spamd-setup protocol has changed from: tag;message;a/m;a/m;a/m...\n to :tag;message;af;count;a/m;a/m;a/m...[af;count;a/m;a/m;a/m]\n OK phessler@ "nice" beck@
* PR 5621 - spamd doesn't clear the last entry from an empty TRAP list,beck2007-11-031-1/+2
| | | | noticed and patch from Piotr Sikora <piotr@sikora.nu>
* I relinquish any copyright claim I have on this filekjell2007-03-291-2/+2
|
* use new license. ok kjell@, who also wanted his name removed, but he needsbeck2007-03-261-20/+12
| | | | to remember how to commit to do that.
* some cleanups prompted by lint, no really nasty bugs; ok beckderaadt2005-11-301-2/+1
|
* paranoia; beck okderaadt2004-02-261-12/+10
|
* Spamd changes to add blacklist awareness to spamd, new spamd-setup.plbeck2003-03-021-0/+71
which configures individual blacklists sources and deals with whitelists. Perl still needs some stylistic changes as suggested by bmc which will go in shortly. ok deraadt@