Hey,
Also, just in case you were talking about the actual configuration directives, you can configure it by using the syntax shown below for example (this is how I have mine configured):
Code:
HTTPBLDefaultAction allow
# Serve all search engines
HTTPBLRBLReqHandler 255:0-255:0-255:0 allow
# Deny any requests originating from IPs known to Project Honey Pot to be suspicious or offensive.
HTTPBLRBLReqHandler 255:0-255:0-255:255 deny
# Deny known exploiters (8) from using HTTP requests (4), and POST requests (2)
HTTPBLRBLReqHandler 4:0-255:0-255:8 deny
HTTPBLRBLReqHandler 2:0-255:0-255:8 deny
# Deny comment spammers (4) as well from submitting POST Requests (2), and HTTP Requests (4)
HTTPBLRBLReqHandler 4:0-255:0-255:4 deny
HTTPBLRBLReqHandler 2:0-255:0-255:4 deny
# Set by default, no need to set it below, so it's commented out.
#HTTPBLTestingURL /httpbl_diagnostics/
I find these settings work pretty effectively in both my server configuration and a bunch of different client server configurations in preventing comment spam, and otherwise -- the documentation for it is pretty detailed, but you won't find it as part of the source package.
I forget where I found it honestly, but it was pretty detailed, as it has lots of directives you can use.
If I manage to find it again, I'll post it here for you.