Quote:
Originally Posted by carsafety
I recently received an email claiming to be from spamhaus.org, citing a large number of queries from my server IP address. It was suspicious enough that I would have ignored it, except that I recently installed this mod. Of course, they appear to want me to pay for their service. Is this mod doing queries to Spamhaus datafeed? I don't believe I have any other third party spam mods other than the integrated akismet filter.
The only Spam-O-Matic features I have enabled are IP check and email check.
|
Nope, this mod does not query to Spamhaus. It's probably a scam.
Also, to enable TypePad Antispam in this mod, simply replace
Code:
$vbghsfs_host = $key.'.rest.akismet.com';
to
Code:
$vbghsfs_host = 'api.antispam.typepad.com';
in the newpost_process hook, and do the same in includes/functions_ghsom.php. Next, replace
Code:
$response = VBGHSFS_AkismetRemoteCall("key=$key&blog=$blog", 'rest.akismet.com', '/1.1/verify-key', 80);
with:
Code:
$response = VBGHSFS_AkismetRemoteCall("key=$key&blog=$blog", 'api.antispam.typepad.com', '/1.1/verify-key', 80);
Then get a free API key from
http://antispam.typepad.com/info/get-api-key.html.