MyBB Community Forums

Full Version: Set specific setting as dfault for new users
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

is it possible to set e specific setting as default for new users ? I want to set "send email if a new personal message arrived" to enabled (not sure if my translation to that setting is exact).

Some hint where i can set this as default ?

I have a fresh install of 1.8.12

Cheers Chris
you can run below SQL queries

ALTER TABLE `mybb_users` CHANGE `pmnotify` `pmnotify` INT(1) NOT NULL DEFAULT '1'
UPDATE `mybb_users` SET `pmnotify` = '1' WHERE `pmnotify` = '0' 

see also common SQL queries guidance