MyBB Community Forums

Full Version: Stop receiving emails about users that has to be activated
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey,
I am using Administrator Activation for newly registered users on my forum, however the activation is actually done through a command on my Minecraft server. Therefore, I'd like not to receive emails stating that there is a new user awaiting Administrator Activation.

Is it possible to turn these emails off?

Jacob
As far as I can remember, this would require a core edit to remove the code that notifies administrators via Email.
I have sent this to our development team who will look into this and reply to your thread as quickly as possible!
Hi,

There's no core setting to turn off these emails, but you can edit the core code to disable the emails. You can simply comment this line out in member.php: https://github.com/mybb/mybb/blob/featur...r.php#L534

So, the line in question would become:

//my_mail($recipient['email'], $subject, $message);
Thank you, I'll try that!