MyBB Community Forums

Full Version: Disable auto email subscription for all?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I do this? I recently transferred a large forum to MyBB a few days ago, this is the top complaint. People dislike this and a poll was done, and an overwhelming amount of users dislike it. And, if the forum continues to grow at its pace it might bog down our server's email server which we have a 10k per hour limit.

How can I disable this part for new replies?
run below SQL queries
UPDATE `mybb_users` SET `subscriptionmethod` = '1' WHERE `subscriptionmethod` = '2';

UPDATE `mybb_threadsubscriptions` SET `notification` = '0' WHERE `notification` = '1';
Thank you. Smile