Hi...I managed to end up watching 75 pages in one Confluence space, and I don't see a way in email preferences to stop watching all of them. Looks like I have to click "Stop watching" next to each page. Any way to do this in bulk? Thx
Hi there,
You can click on your profile >> Watches to list out all your subscriptions.
Click on "Stop Watching" to disable them.
Hope this help.
Thank you.
Regards,
Wayne Wong
if you have scriptrunner
this code help me
importcom.atlassian.confluence.mail.notification.NotificationManagerimportcom.atlassian.spring.container.ContainerManagerimportcom.atlassian.sal.api.component.ComponentLocatorimportcom.atlassian.confluence.pages.PageManagerimportcom.atlassian.confluence.search.service.ContentTypeEnumimportorg.slf4j.Loggerimportorg.slf4j.LoggerFactoryimportcom.atlassian.confluence.user.UserAccessorimportcom.atlassian.confluence.spaces.SpaceManagerimportcom.atlassian.user.UserManagerLogger log = LoggerFactory.getLogger("console")
def userManager = ComponentLocator.getComponent(UserManager)
NotificationManager nm = ( NotificationManager) ContainerManager.getComponent("notificationManager")PageManager pageManager = ComponentLocator.getComponent(PageManager)ContentTypeEnum ctp = ComponentLocator.getComponent(ContentTypeEnum)UserAccessor userAccessor = ComponentLocator.getComponent(UserAccessor)def spaceManager = ComponentLocator.getComponent(SpaceManager)def users = userManager.users.find{it.getName() =="username"}def nfu = nm.getNotificationsByUser(userAccessor.getUserByName(users?.getName()))nm.removeAllNotificationsForUser(userAccessor.getUserByName(users.getName()))returnnm.getNotificationsByUser(userAccessor.getUserByName(users.getName()))
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.