Andrew Not sure if you you solved this or not...
IIRC, gmail/google apps mail also has a rate limit in addition to daily mails per account limit - if you exceed some number of emails per minute it starts rejecting mail. "Some number" was sometimes different in my tests, but it hovered around 60-80 emails per minute. I had to add sleep() timeouts to "throttle" the sending - I think I ended up with 2 seconds of sleep after each email and that seemed to work. Azadi On Wed, Aug 31, 2011 at 05:41, Andrew Scott <[email protected]> wrote: > > This is a ColdFusion 8 server, and not all mail is having this problem, as > it appears that any email that is sent without the from or to address > contains the name of the email account it is being sent from. > > I am sort of think it is a relay issue, or something but can't seem to find > anything that is leading me in the right direction. Google has been of no > help in finding an answer either. > > This is what is showing up in the logs > > "Error","scheduler-1","08/31/11","07:32:14",,"Exception reading response" > javax.mail.MessagingException: Exception reading response; > nested exception is: > java.net.SocketTimeoutException: Read timed out > at > com.sun.mail.smtp.SMTPTransport.readServerResponse(SMTPTransport.java:1462) > at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1260) > at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:370) > at javax.mail.Service.connect(Service.java:275) > at coldfusion.mail.MailSpooler.getConnection(MailSpooler.java:994) > at coldfusion.mail.MailSpooler.deliver(MailSpooler.java:832) > at coldfusion.mail.MailSpooler.sendMail(MailSpooler.java:753) > at coldfusion.mail.MailSpooler.deliverStandard(MailSpooler.java:1070) > at coldfusion.mail.MailSpooler.run(MailSpooler.java:1035) > at coldfusion.scheduling.ThreadPool.run(ThreadPool.java:201) > at coldfusion.scheduling.WorkerThread.run(WorkerThread.java:71) > Caused by: java.net.SocketTimeoutException: Read timed out > at java.net.SocketInputStream.socketRead0(Native Method) > at java.net.SocketInputStream.read(SocketInputStream.java:129) > at com.sun.mail.util.TraceInputStream.read(TraceInputStream.java:97) > at java.io.BufferedInputStream.fill(BufferedInputStream.java:218) > at java.io.BufferedInputStream.read(BufferedInputStream.java:237) > at com.sun.mail.util.LineInputStream.readLine(LineInputStream.java:75) > at > com.sun.mail.smtp.SMTPTransport.readServerResponse(SMTPTransport.java:1440) > > > > > -- > Regards, > Andrew Scott > WebSite: http://www.andyscott.id.au/ > Google+: http://plus.google.com/108193156965451149543 > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347428 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

