In our instance, we have a user account associated with someone no longer associated with the company. Before they left, they did not turn off their watches... as a result, the mail queue gets filled up with errors due to the email address no longer being valid.
Any suggestions on how to avoid getting any errors? Change the email address associated w/the user to /dev/null? :)
Regards,
Dave
Hi Dave,
If you deactivate the user by removing them from confluence-users that should stop the emails. If that doesn't work you can remove the notifications directly from the database with:
DELETE
FROM
NOTIFICATIONS
WHERE
username =
'<user'
s
name
>';
Information taken from http://confluence.atlassian.com/display/CONFKB/Removing+Watches+for+a+Deleted+User
Hope that helps,
Andrew.
Thanks Andrew!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Removing groups is probably the quickest way, but if you wanted to make sure, couldn't you reset the password, and then log in and manage the account that way?
Barbara
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.
Under admin, open the user, delete all their project roles, and remove them from any groups, including confluence-users*. They can recieve notifications unless they have rights.
* I have a group called confluence-defunct-users that I put old users in, primarily to mark them as old accounts, so I actually add them to this and remove them from anything else.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That works for Jira... in my case (which I forgot to specify) is for Confluence.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not the easiest way but you can go to each issue the person is watching and remove them. Here's how:
http://confluence.atlassian.com/display/JIRA/Watching+and+Voting+on+an+Issue
Read through the section and you'll see directions on how to remove people from watch lists.
There's probably a bulk way to do it as well from that user's account. . .
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.