-
Bug
-
Resolution: Fixed
-
Medium
-
5.4.2, 5.5.2
-
None
-
standalone, jre1.7.0_25 64 bit, Red Hat Enterprise Linux Server release 6.4
NOTE: This bug report is for Confluence Server. Using Confluence Cloud? See the corresponding bug report.
I have a Remote JIRA Directory (Type "Atlassian Crowd"). JIRA is in version 6.1.7.
Users which are disabled in JIRA still appear in the People Directory in Confluence. Also, these disabled users appear in the suggestion list when typing @ (in page edit mode) to mention a user on a page.
We have a very long list of disabled users in JIRA and the fact that they appear in Confluence is very confusing and a critical issue for us.
- is blocked by
-
CONFSERVER-16477 Provide the ability to filter out deactivated users from the people directory
- Closed
- relates to
-
CONFCLOUD-32702 Disabled users In JIRA/LDAP still appear in Confluence in the People directory and can still be mentioned in pages
-
- Closed
-
Hi,
I've found a little workaround for this problem. It seems that when you de-activate a user, she still gets a password set ; in the same time, the Personal Directory lists all users with a password set. So, you may unset the password for the deactivated users and they won't appear anymore in the Personal Directory. EDIT : it also deactivates the ability to mention these deactivated users.
I didn't find any way to unset a password through the web interface, which means that eventually you have to manually update your database...
If you use a SQL DB, this request will do the job :
update cwd_user set credential = "nopass" where active = "F";
(cwd_user is the users table, credential is "X" if a password is set or "nopass" else, and active is "T" or "F" regarding the user is active or not)
Cheers