I have a backlog of old emails in my JIRA queue that I would like to delete, hundreds. I have read that stopping the JIRA service and starting it again will clear this but the emails just seem to go back into the queue again when started.
I just spent way too much time fixing this on our JSD instance, so I'm publishing this answer on every article that seems related in case it saves others time.
This answer does involve some database manipulation (the email queue is stored in AO_4E8AE6_NOTIF_BATCH_QUEUE), which I know is frowned upon, but it was the only thing that worked after trying every other solution I found (clearing caches, changing ntp, trying safe mode, etc).
-- AO_4E8AE6_NOTIF_BATCH_QUEUE is where the mail queue is stored in the database
-- This will return the matching emails in the database
select
-- Join the project key on the issue number to get something the issueKey <PROJ-325>
distinct p.pkey + '-' + cast(i.issuenum as varchar) as issueKey
-- AO_4E8AE6_NOTIF_BATCH_QUEUE is the table that stores the pending notifications. This is the email queue!
from JIRAServiceDesk.jiraschema.AO_4E8AE6_NOTIF_BATCH_QUEUE as q
left join jiraschema.jiraissue i on i.id = q.ISSUE_ID
left join jiraschema.project p on p.id = i.PROJECT
rm
{JIRA-HOME}
/caches/indexes/
* -f -R
select q.*
into JIRAServiceDesk.jiraschema.[AO_4E8AE6_NOTIF_BATCH_QUEUE-BACKUP_BEFORE_CLEARING_QUEUE]
from JIRAServiceDesk.jiraschema.AO_4E8AE6_NOTIF_BATCH_QUEUE as q
where q.SENT_TIME is null
update JIRAServiceDesk.jiraschema.AO_4E8AE6_NOTIF_BATCH_QUEUE
set SENT_TIME = 1526297477500 -- UNIX time that wasn't used on any other issues
where sent_time is null
Do a user lookup by email of your incoming address. If a user has been created, this can happen. What mail handler are you using?
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.
It actually looks like some sort of email loop as apposed to a back log of emails. I cleared all the emails from the inbox of the account that jira uses. Now it appears that there are 5-6 tickets that are in a loop of continuous emial notification/jira comments being added.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Stopping and starting the service don't delete the mail queue. Please go to your admin page where you configure the mail service. There you will find a button which will clear the mail queue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That's not true, you cannore remove the queue from the interface, the only way to remove it is to restart Jira. Flushin does SENT the emails NOW.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Actually, if you Disable the Outbound Mail (there is a button in the UI), doing a Mail Queue Flush will actually result in the clearing of the current Queue. Given the error queue can be deleted too, seems possible to do this through the UI?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If its still putting the outgoing emails in queure again then you must check with the SMTP server configration with JIRA or if there is a memory problem. You can check for the cause in the application server log file.
You may like to refer this below links -
https://confluence.atlassian.com/display/JIRAKB/Mail+Queue+Never+Flushed+Automatically
https://confluence.atlassian.com/display/JIRA041/Troubleshoot+Mail+Notification+Problems
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi there,
You seems to be bumping into this issue as the documentation below:
https://confluence.atlassian.com/display/JIRAKB/Mail+Queue+Never+Flushed+Automatically
Try to see if the resolution helps.
Hope it helps, cheers :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.