Xenforo Disable receive email notifications

Root

System Boss
Staff member
Big Boss
Joined
Jun 1, 2018
Messages
1,137
Reaction score
18,365
Points
113
NullCash
78,804
You can disable receive all email notifications on Xenforo 2x and 2.1x

Why are we doing this ?
Xenforo system will sen email every Direct Message,Comment and new notification so Mail servers is always exceed the limit


Code:
SQL:Copy to clipboard
UPDATE xf_user_option SET creation_watch_state = "watch_no_email" WHERE creation_watch_state = "watch_email";
UPDATE xf_user_option SET interaction_watch_state = "watch_no_email" WHERE interaction_watch_state = "watch_email";
UPDATE xf_user_option SET email_on_conversation = 0;
 
Top