summaryrefslogtreecommitdiff
path: root/doc/todo/http_bl_support.mdwn
blob: f7a46ee6cd09ffcfdd9b8b8cdd4ae659f85db5c3 (plain)

Project Honeypot has an HTTP:BL API available to subscribed (it's free, accept donations) people/orgs. There's a basic perl package someone wrote, I'm including a copy here.

from here

The [[plugins/blogspam]] service already checks urls against the surbl, and has its own IP blacklist. The best way to support the HTTP:BL may be to add a plugin there. --[[Joey]]

From the page:

The usage is simple:

use Honeypot; my $key = 'XXXXXXX'; # your key my $ip = '....'; the IP you want to check my $q = Honeypot::query($key, $ip);

use Data::Dumper; print Dumper $q;

Any chance of having this as a plugin?

I could give it a go, too. Would be fun to try my hand at Perl. --[[simonraven]]

[[!tag wishlist]]