Web Server forum
Back To The Forum Home!Search!Private Messaging System

This is Interesting: Free IT Magazines Now Free shipping to California  
Web Server Talk Web Server Talk > Web Servers reviews > IIS server support > IIS and SMTP > Messages stuck in the QUEUE folder




  Last Thread   Next Thread Next
  Show Printable Version Email this Page Subscribe to this Thread      Post New Thread    Post A Reply      

hsiung3 is offline     Messages stuck in the QUEUE folder  
hsiung3


View Ip Address Report This Message To A Moderator Edit/Delete Message


Click Here to See the Profile for hsiung3 Click here to Send hsiung3 a Private Message Find more posts by hsiung3 Add hsiung3 to your buddy list
 
03-04-05 07:12 PM

Set myMail=CreateObject("CDO.Message")
myMail.Subject="Sending email with CDO"
myMail.From="mymail@mydomain.com"
myMail.To="mymail@mydomain.com"
myMail.TextBody="This is a message."
myMail.Send

It works fine above script. But I  found that only the Email send to the acoount hosted und
er my server got stuck on queue folder,( like my Email account admin@christiansingle
s.com)  ,  the email domains which are not hosting on my server are ok to se
nd out.
I check the the system log and get this message;

Message delivery to the host '70.XX.XXX.XXX' failed while delivering to the 
remote domain 'XXXX.com' for the following reason: The remote server did not
 respond to a connection attempt.

Then I change to the following code;

 ________________________________________
_
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Sending email with CDO"
myMail.From="mymail@mydomain.com"
myMail.To="someone@somedomain.com"
myMail.TextBody="This is a message."
myMail.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/sendusing")=2
'Name or IP of remote SMTP server
myMail.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpserver") _
="smtp.server.com"
'Server port
myMail.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpserverport") _
=25 
myMail.Configuration.Fields.Update
myMail.Send
 ________________________________________
____

I got the error message like this:

CDO.Message.1 error '80040213'
The transport failed to connect to the server. 

My server has the firewall in front And it is windows 2003.


Please advice.




[ Post a follow-up to this message ]



    Re: Messages stuck in the QUEUE folder  
Ken Schaefer


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
03-06-05 01:46 AM

Sounds like the local SMTP server (on the web server) can not contact the
SMTP server that is supposed to be receiving mail for your domain. Are they
the same machine? Or different machines?

Cheers
Ken

"hsiung3" <hsiung3.1le8d2@mail.webservertalk.com> wrote in message
news:hsiung3.1le8d2@mail.webservertalk.com...
:
: Set myMail=CreateObject("CDO.Message")
: myMail.Subject="Sending email with CDO"
: myMail.From="mymail@mydomain.com"
: myMail.To="mymail@mydomain.com"
: myMail.TextBody="This is a message."
: myMail.Send
:
: It works fine above script. But I  found that only the Email send to
: the acoount hosted under my server got stuck on queue folder,( like my
: Email account admin@christiansingles.com)  ,  the email domains which
: are not hosting on my server are ok to send out.
: I check the the system log and get this message;
:
: Message delivery to the host '70.XX.XXX.XXX' failed while delivering to
: the remote domain 'XXXX.com' for the following reason: The remote server
: did not respond to a connection attempt.
:
: Then I change to the following code;
:
:  ________________________________________
_
: Set myMail=CreateObject("CDO.Message")
: myMail.Subject="Sending email with CDO"
: myMail.From="mymail@mydomain.com"
: myMail.To="someone@somedomain.com"
: myMail.TextBody="This is a message."
: myMail.Configuration.Fields.Item _
: ("http://schemas.microsoft.com/cdo/configuration/sendusing")=2
: 'Name or IP of remote SMTP server
: myMail.Configuration.Fields.Item _
: ("http://schemas.microsoft.com/cdo/configuration/smtpserver") _
: ="smtp.server.com"
: 'Server port
: myMail.Configuration.Fields.Item _
: ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") _
: =25
: myMail.Configuration.Fields.Update
: myMail.Send
:  ________________________________________
____
:
: I got the error message like this:
:
: CDO.Message.1 error '80040213'
: The transport failed to connect to the server.
:
: My server has the firewall in front And it is windows 2003.
:
:
: Please advice.
:
:
:
: --
: hsiung3
: ------------------------------------------------------------------------
: Posted via http://www.webservertalk.com
: ------------------------------------------------------------------------
: View this thread: http://www.webservertalk.com/message942938.html
:







[ Post a follow-up to this message ]



erin4amy is offline     Re: Re: Messages stuck in the QUEUE folder  
erin4amy


View Ip Address Report This Message To A Moderator Edit/Delete Message


Click Here to See the Profile for erin4amy Click here to Send erin4amy a Private Message Find more posts by erin4amy Add erin4amy to your buddy list
 
03-30-05 12:52 PM

We had this same issue happen yesterday. What resolved our problem was 1) ou
r ISP changed the IP address for their smtp server, so we pinged that and co
rrected the smarthost entry, and 2) in the mailbox folder there was a lock.m
bx file. Once we deleted it, the messages started flowing smoothly. Hope thi
s helps.




[ Post a follow-up to this message ]



erin4amy is offline     Re: Re: Messages stuck in the QUEUE folder  
erin4amy


View Ip Address Report This Message To A Moderator Edit/Delete Message


Click Here to See the Profile for erin4amy Click here to Send erin4amy a Private Message Find more posts by erin4amy Add erin4amy to your buddy list
 
03-30-05 12:52 PM

We had this same issue happen yesterday. What resolved our problem was 1) ou
r ISP changed the IP address for their smtp server, so we pinged that and co
rrected the smarthost entry, and 2) in the mailbox folder there was a lock.m
bx file. Once we deleted it, the messages started flowing smoothly. Hope thi
s helps.




quote:
Originally posted by Ken Schaefer Sounds like the local SMTP server (on the web server) can not contact the SMTP server that is supposed to be receiving mail for your domain. Are they the same machine? Or different machines? Cheers Ken "hsiung3" <hsiung3.1le8d2@mail.webservertalk.com> wrote in message news:hsiung3.1le8d2@mail.webservertalk.com... : : Set myMail=CreateObject("CDO.Message") : myMail.Subject="Sending email with CDO" : myMail.From="mymail@mydomain.com" : myMail.To="mymail@mydomain.com" : myMail.TextBody="This is a message." : myMail.Send : : It works fine above script. But I found that only the Email send to : the acoount hosted under my server got stuck on queue folder,( like my : Email account admin@christiansingles.com) , the email domains which : are not hosting on my server are ok to send out. : I check the the system log and get this message; : : Message delivery to the host '70.XX.XXX.XXX' failed while delivering to : the remote domain 'XXXX.com' for the following reason: The remote server : did not respond to a connection attempt. : : Then I change to the following code; : : ________________________________________ _ : Set myMail=CreateObject("CDO.Message") : myMail.Subject="Sending email with CDO" : myMail.From="mymail@mydomain.com" : myMail.To="someone@somedomain.com" : myMail.TextBody="This is a message." : myMail.Configuration.Fields.Item _ : ("http://schemas.microsoft.com/cdo/configuration/sendusing")=2 : 'Name or IP of remote SMTP server : myMail.Configuration.Fields.Item _ : ("http://schemas.microsoft.com/cdo/configuration/smtpserver") _ : ="smtp.server.com" : 'Server port : myMail.Configuration.Fields.Item _ : ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") _ : =25 : myMail.Configuration.Fields.Update : myMail.Send : ________________________________________ ____ : : I got the error message like this: : : CDO.Message.1 error '80040213' : The transport failed to connect to the server. : : My server has the firewall in front And it is windows 2003. : : : Please advice. : : : : -- : hsiung3 : ------------------------------------------------------------------------ : Posted via http://www.webservertalk.com : ------------------------------------------------------------------------ : View this thread: http://www.webservertalk.com/message942938.html :




[ Post a follow-up to this message ]



erin4amy is offline     Re: Re: Messages stuck in the QUEUE folder  
erin4amy


View Ip Address Report This Message To A Moderator Edit/Delete Message


Click Here to See the Profile for erin4amy Click here to Send erin4amy a Private Message Find more posts by erin4amy Add erin4amy to your buddy list
 
03-30-05 12:52 PM

We had this same issue happen yesterday. What resolved our problem was 1) ou
r ISP changed the IP address for their smtp server, so we pinged that and co
rrected the smarthost entry, and 2) in the mailbox folder there was a lock.m
bx file. Once we deleted it, the messages started flowing smoothly. Hope thi
s helps.




[ Post a follow-up to this message ]



    Sponsored Links  




 





   All times are GMT. The time now is 08:36 PM.      Post New Thread    Post A Reply      
  Last Thread   Next Thread Next


Most Popular forums 

Forum Jump:
Rate This Thread:

Forum Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is OFF
vB code is ON
Smilies are ON
[IMG] code is OFF
 
Medical and Health forum | Computer Games Reviews | Graphics design forum

Back To The Top
Home | Usercp | Faq | Register