MyBB Community Forums

Full Version: Email spammer question
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I had a person join then they email spammed from my forums to all the members. I have not seen a way in admincp to turn off the email form. What would be the best method to get rid of it's usage?
You can delete it in the profile-fields, I think..

Otherwise, you still can ban him. Wink
There are two ways:

1. You can disable the feature in the usergroup permissions.

2. Open the file member.php and search for:
$plugins->run_hooks("member_emailuser_start");
Add below that line:
error("This feature is disabled!");
on the user group, u can manage if that user group can send mails
MaRio Wrote:on the user group, u can manage if that user group can send mails

Thanks that's what I was looking for. I didn't want to edit the php or a template if I didn't need to do so. I was looking in site configs but didn't find anything about email. Thanks a lot guys for fast reply.