How to change all JIRA internal users e-mail domain name in bulk

Platform notice: Server and Data Center only. This article only applies to Atlassian products on the Server and Data Center platforms.

Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Except Fisheye and Crucible

This guide is for informational purposes and is not eligible for support from Atlassian.  If you have any questions about the information on this page, please reach out to our community at Atlassian Answers for help. 


When a company get acquired, it is necessary for them to change their e-mail address domain name to the new company. However, JIRA does not have a bulk editing feature that could help simplify this process.

Workaround

  1. Create a complete database backup for safety precaution.
  2. Execute this SQL query to obtain internal directory id.

    SELECT id FROM cwd_directory WHERE impl_class = 'com.atlassian.crowd.directory.InternalDirectory';
  3. Execute the following SQL queries to modified the e-mail domain of your internal users.

    UPDATE cwd_user SET email_address = replace(email_address,'<PreviousDomain>','<NewDomain>') WHERE directory_id = <ID from step 2>;
    UPDATE cwd_user SET lower_email_address = replace(lower_email_address,'<PreviousDomain>','<NewDomain>') WHERE directory_id = <ID from step 2>;
    
  4. Restart JIRA

Extra Notes

This method does not work for external users such as LDAP server, Crowd or another JIRA as JIRA will retrieve the data from the external server configured. Hence any modification in JIRA database will be temporary.


RELATED TOPICS

Managing Users


Last modified on Nov 14, 2024

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.