[pLog-svn] r4044 - plugins/branches/lifetype-1.1/badbehavior/bad-behavior

pwestbro at devel.lifetype.net pwestbro at devel.lifetype.net
Mon Sep 25 15:47:01 GMT 2006


Author: pwestbro
Date: 2006-09-25 15:47:00 +0000 (Mon, 25 Sep 2006)
New Revision: 4044

Modified:
   plugins/branches/lifetype-1.1/badbehavior/bad-behavior/post.inc.php
Log:
Disabled the dns blacklist checks from the bad behavior plugin


Modified: plugins/branches/lifetype-1.1/badbehavior/bad-behavior/post.inc.php
===================================================================
--- plugins/branches/lifetype-1.1/badbehavior/bad-behavior/post.inc.php	2006-09-25 03:39:35 UTC (rev 4043)
+++ plugins/branches/lifetype-1.1/badbehavior/bad-behavior/post.inc.php	2006-09-25 15:47:00 UTC (rev 4044)
@@ -3,9 +3,11 @@
 // All tests which apply specifically to POST requests
 function bb2_post($settings, $package)
 {
-	// Check blackhole lists for known spam/malicious activity
-	require_once(BB2_CORE . "/blackhole.inc.php");
-	bb2_test($settings, $package, bb2_blackhole($package));
+    // LifeType mod by pwestbro: dns blacklist checks can be done in the 
+    // dnsantispam plugin.
+//	// Check blackhole lists for known spam/malicious activity
+//	require_once(BB2_CORE . "/blackhole.inc.php");
+//	bb2_test($settings, $package, bb2_blackhole($package));
 
 	// MovableType needs specialized screening
 	if (stripos($package['headers_mixed']['User-Agent'], "MovableType") !== FALSE) {



More information about the pLog-svn mailing list