Quote:
Originally Posted by joeychgo
Yes, it would be very nice if this could work. ESPECIALLY if there was a way to whitelist for a period of time only. (ie 7 days)
I catch spammers who register alot - before they post. They arent listed in the database. Its cumbersome to go to stopforumspam and add the entry as wel as manually deleting the user. It would be great if this could be a one click deal like on posts.
Also, it would be nice if we could block by country. I have no use of China members for example - and would just like to block them outright.
|
add this if you haven't already
add this plugin
Product: vBulletin
Hook Location: useradmin_edit_column1
Title: Submit to StopForumSpam.com
Execution Order: 5
Plugin PHP Code:
Code:
if (!is_member_of($user['usergroupid'], 6)) // we dont want to ban our admin account now do we
{
print_table_break('', $INNERTABLEWIDTH);
print_table_header("Submit to StopForumSpam");
if ($vbulletin->options['glowhostspamomatic_apikey'])
print_label_row('Submit these details to www.stopforumspam.com ban list<BR><table><tr><td>Username:</td><td><input type="text" name="username" size="30" value="'.
$user['username'] . '"></td></tr><tr><td>Email:</td><td><input type="text" name="email" size="30" value="' . $user['email'] . '"></td></tr><tr><td>IP: </td><td><input type="text" name="ip_addr" value="' .$user['ipaddress'] . '"></td></tr></table><input name="api_key" type="hidden" value="' . $vbulletin->options['glowhostspamomatic_apikey'] . '"><input onclick="this.form.action=\'http://www.stopforumspam.com/add.php\';this.form.submit()" type="button" class="button" value="' . $vbphrase['submit'] . '"/>');
else
print_label_row('You need an API key from www.stopforumspam.com before you can submit to the database' ,'');
}
this will allow you to submit them from admincp when viewing users details in admincp