Quote:
Originally Posted by djbaxter
This part echoes the concern I expressed earlier. There is a simple resolution: Check the email address and the IP address and skip the name check. Spammers rotate the names they use anyway, so it's not really helpful and may be harmful.
|
Try this:
Find in includes/functions_vbsfs.php:
PHP Code:
// todo handle the null error results.
$result = checkSFSSpam($username, 'username');
if ($result !== VBSFS_NO_TEST) {
sfsActions('username', $username, $username, $email,$ip, $result);
}
Comment out those lines, i.e., change to:
PHP Code:
// todo handle the null error results.
// $result = checkSFSSpam($username, 'username');
// if ($result !== VBSFS_NO_TEST) {
// sfsActions('username', $username, $username, $email,$ip, $result);
// }