MyBB Community Forums

Full Version: Disable auto subscribe to thread?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Since i moved from vBulletin to Mybb every user subscribes automatically to every thread they post in/create. IS there a way to automatically disable this either in the admin cp or user cp? I haven't seen anything yet.
run below SQL query (through phpMyAdmin)
UPDATE `mybb_users` SET `subscriptionmethod` = '1' WHERE `subscriptionmethod` = '2';

see also this tutorial (you have to workout in a different way !) : Automatic Subscriptions for all members
Great! Thank you. Smile
how about removing users from subscription?

or is it safe to execute "empty" mybb_threadsubscriptions query in phpMyAdmin?

thanks,

KANTUTAN