For security reasons we cannot send out the full content of blog posts in email when notifications go out. As such we've had to shut down all email notificaitons from blog posts within confluence. I know that each individual user can manage their email notifications, but we'd like to enforce this firm wide.
I'm referring to the "Show changed content" referenced here https://confluence.atlassian.com/display/DOC/Subscribing+to+Email+Notifications+of+Updates+to+Confluence+Content
Is this a setting we can enforce for all users?
Howdy Jonathan!
There is a way to enforce this setting for all users, but it will involve working in the database. This information is stored in the OS_PROPERTYENTRY table. You can manually disable the "show changed content" setting for all users that have email notifications enabled by running the following SQL statement:
UPDATE OS_PROPERTYENTRY SET boolean_val = 'f' WHERE entity_key = 'confluence.prefs.email.show.diff';
After manually setting all users to false, you can then use a stored procedure or a trigger to set that value to false if a user attempts to enable the setting.
As this involves directly modifying the database, ensure you backup the database before making any changes. Also note that this statement would not be officially supported by Atlassian.
Cheers,
Stephen Brannen | Confluence Support
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.