Unable to find the owner for email subscription to delete them

Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.

Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. 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

Summary

Multiple users are receiving emails from "Re: [JIRA] Subscription: ${searchRequest.getName()}"

Diagnosis

The issue occurs when the admin was unable to find the owner of the filter subscription nor the filter that was being used.

Solution

  1. Click on the mail received for this subscription from the mailbox.

  2. Right-click on "view source"(If you are using Outlook) and download the same. (Viewing the mail source might be different for different mailboxes. Please check the relevant for your mail client)

  3. Check for the filter used in this subscription. You can find something similar to https://sitename.atlassian.net/issues/?filter=29413

  4. To find the author of the filter, you can use the query below : (ID is retrieved from the Step 3)

    1 select * from searchrequest where id = 29413
  5. Now that you have the filter name, you can use the below SQL query below

    1 select * from filtersubscription where filter_i_d = 29413
  6. You will be able to find the username who created it and group_name to whom the subscription emails are being sent.

  7. Under username you will see an ID of the user so to find the actual author, copy the username and use the below SQL to find the display name and details of user.

    1 select * from cwd_user where user_name = 'ug:xxxxxx-e7ae-4rjbd-y8e0-xxxxx'
  8. You can reach out to the username from the above to get the subscription deleted.

Updated on April 8, 2025

Still need help?

The Atlassian Community is here for you.