XF 1.2 XF email alerts question

vexx

Active member
When I set-up my XF, I enabled the new registrees the recieve emails for any alerts. However, they become kinda annoyed and I'm wondering, is there a possibility to disable this for all users? not only new registrees.

Thanks!

ps. By mistake i've added the same thread in the Troubleshooting and Problems forum, if any of the mods can delete that, I'd appreciate it. I appologize
 
To disable alerts/emails completely, this query:
Code:
UPDATE xf_user_option SET default_watch_state = ''

To make it so that everyone receives an alert, but no e-mails:
Code:
UPDATE xf_user_option SET default_watch_state = 'watch_no_email'
 
Top Bottom