CFMail problem since upgrading to CF9

2010-12-10 Thread Rick Root
We've been having significantly more trouble getting CF to send mail to our MDaemon server ... after we upgraded to CF9, we started seeing a lot of these errors in the mail.log: [Error,scheduler-4,12/10/10,11:40:51,,Could not connect to SMTP host: 69.41.172.242, port: 25, response: 421 and

Re: CFMail problem since upgrading to CF9

2010-12-10 Thread Ian Skinner
On 12/10/2010 9:04 AM, Rick Root wrote: [Error,scheduler-4,12/10/10,11:40:51,,Could not connect to SMTP host: 69.41.172.242, port: 25, response: 421 and [Error,mailWorker-6,12/10/10,10:50:29,,Could not connect to SMTP host: 69.41.172.242, port: 25, response: 421 Does the user that your

Re: CFMail problem since upgrading to CF9

2010-12-10 Thread Steven Durette
Smtp error 421 is the service is not available and the connection will be closed It is from the smtp server not ColdFusion, so you issue is the smtp server. Steve Sent from my iPhone On Dec 10, 2010, at 12:04 PM, Rick Root rick.r...@gmail.com wrote: We've been having significantly more

Re: CFMail problem since upgrading to CF9

2010-12-10 Thread Rick Root
AH, so Could not connect to SMTP Server reported by coldfusion is not really correct because it DID connect to the SMTP server, it just couldn't send the message. Okay, makes sense. On Fri, Dec 10, 2010 at 12:20 PM, Steven Durette st...@durette.org wrote: Smtp error 421 is the service is not

Re: CFMail problem since upgrading to CF9

2010-12-10 Thread Steven Durette
Actually the CF error is correct. CF tried to connect to the smtp server and all it got back was error 421. So connection couldn't be made. Sent from my iPhone ~| Order the Adobe Coldfusion Anthology now!

Re: CFMail problem since upgrading to CF9

2010-12-10 Thread Rick Root
Found a setting in MDaemon that restricted the maximum concurrent incoming connections. Since CF was set to 30 threads and we have 3 isntances, and MDaemon set to only accept 50 incoming connections, that was PROBABLY causing the issue. Thanks all. Rick