This is controlled by your preferences:
View attachment 123349
Technically, this suggestion is already implemented because it can be controlled by the user if desired, but I will keep it open on the basis that we could look at allowing the admin to set the defaults, like we can for the watched thread stuff on registration.
In the meantime:
Code:
UPDATE xf_user_option
SET
xengallery_default_media_watch_state = '',
xengallery_default_album_watch_state = '',
xengallery_default_category_watch_state = ''
That will disable automatic watching for all existing users.
Code:
ALTER TABLE xf_user_option
MODIFY COLUMN xengallery_default_media_watch_state ENUM('','watch_no_email','watch_email') NOT NULL DEFAULT '',
MODIFY COLUMN xengallery_default_album_watch_state ENUM('','watch_no_email','watch_email') NOT NULL DEFAULT '',
MODIFY COLUMN xengallery_default_category_watch_state ENUM('','watch_no_email','watch_email') NOT NULL DEFAULT ''
This will set the default for any new users.