summaryrefslogtreecommitdiff
path: root/usr.sbin/spamdb
AgeCommit message (Collapse)Author
2005-05-24Remove -ansi as that means expose only C89 interfaces.Todd C. Miller
2005-05-16- improve option descriptionsJason McIntyre
- note expected format of "key" - note that date -r may help understand spamdb output - spacing ok beck@
2005-03-12remove useless sentence;Jason McIntyre
ok beck@
2005-03-11freeaddrinfo() isn't needed on the error path from getaddrinfo().Bob Beck
ok claudio@
2005-03-11fix usage to reflect new reality, ok jmc@Bob Beck
2005-03-11"Greytrapping" for spamd - allow for spamd greylisting to maintainBob Beck
a list of spamtrap destination addresses in the spamd database. When a spamtrap address gets an attempted greylist delivery, blacklist the offending host for a day. Does not affect hosts already whitelisted. ok deraadt@, jmc@, dhartmei@ to get it in so it can be whacked on
2004-04-27getaddrinfo 4th arg has to be non-null. Gerard gerritsenJun-ichiro itojun Hagino
2004-04-26bzero hint before use.Jun-ichiro itojun Hagino
2004-04-25use '|' as field separator, not ':' - for future IPv6 supportJun-ichiro itojun Hagino
2004-04-19Remove unused stuff; give error message if the db cannot be openened; setOtto Moerbeek
exit code. ok beck@
2004-03-13- typosJason McIntyre
- new sentence, new line - tidy up a list
2004-03-11fix leak, found by Patrick Latifi <pat@eyeo.org>Bob Beck
ok millert@, dhartmei@
2004-03-11open O_RDONLY when listingBob Beck
ok millert@, dharmei@
2004-03-11Remove sync() calls that immediately precede databse close(). SinceTodd C. Miller
close() calls sync() itself the standalone sync() is a no-op. OK beck@
2004-03-01paranoia and cleanup, document output formatBob Beck
ok millert@
2004-02-27fix CFLAGS -IDavid Krause
ok deraadt@
2004-02-26don't double define PATH_SPAMD_DB - notice by pbBob Beck
2004-02-26paranoia; beck okTheo de Raadt
2004-02-26Add -g option for greylisting support for spamd. The greylisting techinqueBob Beck
originates from a paper by Evan Harris which can be found at http://projects.puremagic.com/greylisting/. This implementation makes spamd allow for non-blacklisted addresses to be treated as "greylisted". where they are tracked in a db file, and whitelisted by addition to a pf table when the same envelope from and to are retried from the same source IP address. Testing by many, ok deraadt@