MyBB Community Forums

Full Version: group permissions
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I can't find the settings for setting group permissions for
"Alert with notice when new private message is received" as default when someone new joins

anyone now how to do this ?
see common sql queries guidance

ALTER TABLE `mybb_users` MODIFY COLUMN `pmnotice`  tinyint(1) NOT NULL default '1';
UPDATE `mybb_users` SET `pmnotice` = '1' WHERE `pmnotice` = '0' AND `usergroup` = '2';
thanks M
this would be good if you could set this in the admin panel,

Is there a way to set this for all users on your forums ?