gagf
Member
Posts: 38
Registered: 3-25-2012
Member Is Offline
|
|
[Resolved] Spammers
Full Board URL: http://www.gagunforum.com/
XMB Version: 1.9.11
What can i do to keep spammers of my site? I usually get 3 every week. They register, list a website , and usually post a real long thread about some
kind of handbag or something crazy. You can't even read half of what they post , i'm getting tired of manually going through members to find them and
remove them
Any help would be appreciated. TIA
|
|
vlonjat4ever
Member
Posts: 24
Registered: 9-5-2009
Location: In your HDD
Member Is Offline
Mood: Cool!
|
|
Go to Adminstration Panel , click Settings and scroll down to User Control
Find E-mail verification (e-mail random password)? and set it to ON
Francesko
|
|
gagf
Member
Posts: 38
Registered: 3-25-2012
Member Is Offline
|
|
will that keep them from doing it. It's not autobots it's people that are doing it , usually from xxxx@gmx.com
Captcha is on and that isn't helping i will try this
|
|
kuba1
XMB Project Manager
Posts: 161
Registered: 12-16-2007
Location: Here on this forum ;)
Member Is Offline
Mood: No Mood
|
|
Nothing will be 100% in stopping people from spamming your board. This hack is a must .... it will help to control Moderation System
Using the moderation system along with email verification is about all one can do.
Also in admin panel >> settings set "Allow duplicate mails?" to off. so, when you ban someone they cannot reregister using the same email
address.
|
|
Passthru
Experienced
Posts: 19
Registered: 12-25-2005
Member Is Offline
Mood: No Mood
|
|
these will help a TON, install mods "Moderation System" and "Member Approval". use both or either one, personally i like the member approval. the
first post must be approved by you before it is visible on the forums.
|
|
gagf
Member
Posts: 38
Registered: 3-25-2012
Member Is Offline
|
|
email verification does not help at all, with captcha on . . no luck
i don't want to do anything that will turn potential real users away , and make it aggravating for them to join and post
|
|
lottos
Administrator
Posts: 479
Registered: 6-3-2002
Member Is Offline
Mood: pass me a TimTam
|
|
In member.php you can alter the php to exclude members joining from specific email domains.
|
|
gagf
Member
Posts: 38
Registered: 3-25-2012
Member Is Offline
|
|
everyone of them have had an email from xxxxx@gmx.com
|
|
lottos
Administrator
Posts: 479
Registered: 6-3-2002
Member Is Offline
Mood: pass me a TimTam
|
|
In member.php look for code that looks something like this:
if (false === $test->check_email_address($rawemail)) {
error($lang['bademail']);
}
Add below:
// don't allow specific email domain addresses
$email_spams = array('gmx.com','mailinator.com'); // just add known domains you want to exclude
$spamdomain = strtolower(substr($email, strpos($email,'@')+1));
if(in_array($spamdomain,$email_spams)) {
error($lang['bademail']);
}
TEST, if works, say thanks!
|
|
Adam
XMB Contributor
Posts: 12
Registered: 6-28-2003
Location: Birmingham, UK
Member Is Offline
Mood: Busy
|
|
Quote: Originally posted by lottos | In member.php look for code that looks something like this:
if (false === $test->check_email_address($rawemail)) {
error($lang['bademail']);
}
Add below:
// don't allow specific email domain addresses
$email_spams = array('gmx.com','mailinator.com'); // just add known domains you want to exclude
$spamdomain = strtolower(substr($email, strpos($email,'@')+1));
if(in_array($spamdomain,$email_spams)) {
error($lang['bademail']);
}
TEST, if works, say thanks! |
I thought XMB already had this built in?
Admin Panel -> Restriction Manager:
"
To restrict the use of a username or e-mail address, enter the details below
You may wish to restrict the use of a certain names such as admin, owner etc
"
You can simply enter the domain, and check the partial box.
XMB Freelancer!
Former XMB Contributor / Mod (Hack) Developer, & XMB Services owner.
If you wish to get in touch and I am inactive here, please send me a u2u which I will receive email notification for. I always check and respond to
genuine messages.
|
|
gagf
Member
Posts: 38
Registered: 3-25-2012
Member Is Offline
|
|
i tried the restriction manager but it didn't keep them out
|
|