KB Article #101153
Immediate retry of all messages in the Redirect queue
This article was previously published as ID#30225
Summary:
The Redirect queue in MMS does not have a "release to recipients" option as the Retry queue does. How can I get the messages to retry now?
Detailed Information:
There is currently no feature in the MMS admin to do this, but the script below will set the retry time for all messages in the Redirect queue to the current time - eliminating the wait if the messages queued have a long retry interval.
Resolution:
To run the script, open SQL Query Analyzer, copy the script below (everything between the lines) and paste it in, then click the green arrow to run.
NOTE: if your database is named something other than 'MMSMail', you must edit the script to reflect the correct database name.
--------------------------
use MMSMail
update dbo.RelayStoreMessageHeaders
set nextTime = GETDATE() where queueName = 'rdir'
--------------------------
Original Author: ACUNY
Original Submitter: ACUNY
Keywords: force retry now tech tip MMS ID#30225