up vote 10 down vote favorite
share [g+] share [fb]

We are currently experiencing intermittent mail queue stoppages. I'm seeking diagnostic help in another area.

In the meantime, is there a way to restart the CF mail queue without restarting the service as a whole?

CF8 standard Win2k3

Solution: We are now checking the age of the oldest file in the mail queue. When it exceeds a set age (currently 30 min) the mail queue is restarted.

link|improve this question

feedback

2 Answers

up vote 15 down vote accepted

Yes there is.

<cfset sFactory = CreateObject("java","coldfusion.server.ServiceFactory")>
<cfset MailSpoolService = sFactory.mailSpoolService>
<cfset MailSpoolService.stop()>
<cfset MailSpoolService.start()>
link|improve this answer
Just out of curiosity, does this work in both cases: Using the CF Mail queue, as well as mail spooling? – Adam Tuttle Sep 19 '08 at 1:53
This is very useful. I just wrote a script today that checks the spool because our cfmail queues are hanging intermittently as well. – Cade Sep 19 '08 at 2:53
Nice... that one is getting saved for future hacking... further proving the mantra "When CF fails, just have Java to do it directly." – OhkaBaka Oct 25 '09 at 17:19
feedback

Unless Adobe's policy has changed, using the ServiceFactory is unsupported and may break on future versions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.