After v4.2.7 upgrade, the “Recommended update email” was ON by default system wide. I noticed this afterwards, and then unchecked the “Send by default” box (under Conflucence Admin| Recommended update email | Send by Default ) . However, this seems only affect newer users. All existing users had, by default, already subscribe to it (from the top menu bar | User Name | Settings | Email | Subscribe to recommended updates is CHECKED).
It is important to allow users opt-in, rather than sending the messages by default. By the way, in our case, almost ALL newly created pages/comments made it to "Recommended ..." and therefore being sent system wide to ALL users within the permission setting. It is way too much. We have to stop it.
Can we update this setting on all users in the SQL database? In which table/field is this subscription stored?
I've tried the same => It seems that ONLY user having edited their email-seetings once are added to this sql-table.
All other others just get the updates ...
aaargh: How to disable this for ALL confluence users.
The only solution I curretnly see is buying the "Confluence SU" plugin and editing each and every user profile manually.
Any better idea highly welcome.
Check out the results of this query
select * from os_propertyentry where entity_key like 'confluence.prefs.daily.summary.receive.updates.set';
update os_propertyentry set boolean_val = 'f' where entity_key like 'confluence.prefs.daily.summary.receive.updates';
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Has any figured this out yet? It's a big deal to my Customers, and I can't seem to find another solution.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi CRL,
I found a KB, that will help us in this case:
https://confluence.atlassian.com/display/CONFKB/Unable+to+disable+the+Send+By+Default+option+in+Recommended+Updates+Email+Configuration
Basically this KB proposes to us, to update the BANDANA table, that way we can set a value as false in the table, and the recommended update mail should be off.
I hope this helps.
Cheers,
WZ
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.