alot of my spammers comes from emails like [email protected] or [email protected] ... etc
so in my member.module.php in around line 325 after the email verification I added
[code]
$domain = explode("@", $_POST['email']);
$domain = $domain[(count($domain)-1)];
$myblacklist = array('tom.com', '163.com', 'tom.net', '163.net');
if (in_array($domain , $myblacklist)) {
$errors[] = t('You are spammer and this email is Registered and will be Reported');
}
[/code]
do this and add any domain to the array
with regards
Adil
|