|
 |
asp_cdo thread: cdonts mail sitting in queue folder
Message #1 by "Brandon, Blithe" <bbrandon@i...> on Tue, 5 Dec 2000 18:38:46 -0800
|
|
I have used CDONTS mail before with much success at my previous job, but
right now my test emails are sitting in the Queue folder under mailroot.
Is this because something hasn't been configured properly?
Does anyone have any suggests for the troubleshooting steps. I'm really not
sure what I should look for.
THANKS
Blithe
Blithe Brandon
Web Engineer
Inleague, Inc.
1111 Bayhill Dr. Ste. 150
San Bruno, CA 94066
http://www.inleague.com/
blithe.brandon@i...
Message #2 by "Tom Molskow" <tmolskow@h...> on Wed, 06 Dec 2000 06:21:59 -0500
|
|
can you post your code?
>From: "Brandon, Blithe" <bbrandon@i...>
>Reply-To: "ASP CDO" <asp_cdo@p...>
>To: "ASP CDO" <asp_cdo@p...>
>Subject: [asp_cdo] cdonts mail sitting in queue folder
>Date: Tue, 5 Dec 2000 18:38:46 -0800
>
>
>I have used CDONTS mail before with much success at my previous job, but
>right now my test emails are sitting in the Queue folder under mailroot.
>
>Is this because something hasn't been configured properly?
>
>Does anyone have any suggests for the troubleshooting steps. I'm really
>not
>sure what I should look for.
>
>THANKS
>
>Blithe
>
>Blithe Brandon
>Web Engineer
>Inleague, Inc.
>1111 Bayhill Dr. Ste. 150
>San Bruno, CA 94066
>http://www.inleague.com/
>blithe.brandon@i...
>
Message #3 by "Hudak, John" <John.Hudak@w...> on Wed, 6 Dec 2000 07:51:39 -0500
|
|
I can't be sure without seeing your code, but one of the issues that I had
in the past was with the Fully Qualified Domain Name of the web server.
Most SMTP servers are designed to do a reverse DNS lookup on any SMTP
connection to help detect spammers. If your box does not have a Fully
Qualified Domain Name, your mail might be refused by the servers you are
trying to send it to.
You might try configuring your SMTP services on your server to use ANOTHER
server as the relay agent (this is the "Smart Host" configuration). I have
been able to track down problems in that way as well.
I would be happy to help, please post your code and we can take a look at
it. Usually, issues with CDONTS are network related. HOWEVER, I have seen
problems with the CDONTS.dll from a versioning standpoint. For instance, if
you are using Exchange 5.5 on your network, you will need to get the
CDONTS.dll off of your Exchange server and register it on your IIS box, as
version 5.0 ships with the option pack. This issue is of course not
applicable if you are using 2000 Server.
Again, I would be happy to help.
John F. Hudak
Programmer/Consultant
Whitlockebs
Moving Business on the Web
http://www.whitlockebs.com/
P xxx.xxx.xxxx x642
xxx.xxx.xxxx
F xxx.xxx.xxxx
-----Original Message-----
From: Tom Molskow [mailto:tmolskow@h...]
Sent: Wednesday, December 06, 2000 6:22 AM
To: ASP CDO
Subject: [asp_cdo] Re: cdonts mail sitting in queue folder
can you post your code?
>From: "Brandon, Blithe" <bbrandon@i...>
>Reply-To: "ASP CDO" <asp_cdo@p...>
>To: "ASP CDO" <asp_cdo@p...>
>Subject: [asp_cdo] cdonts mail sitting in queue folder
>Date: Tue, 5 Dec 2000 18:38:46 -0800
>
>
>I have used CDONTS mail before with much success at my previous job, but
>right now my test emails are sitting in the Queue folder under mailroot.
>
>Is this because something hasn't been configured properly?
>
>Does anyone have any suggests for the troubleshooting steps. I'm really
>not
>sure what I should look for.
>
>THANKS
>
>Blithe
>
>Blithe Brandon
>Web Engineer
>Inleague, Inc.
>1111 Bayhill Dr. Ste. 150
>San Bruno, CA 94066
>http://www.inleague.com/
>blithe.brandon@i...
>
Message #4 by "Brandon, Blithe" <bbrandon@i...> on Wed, 6 Dec 2000 15:19:49 -0800
|
|
Thanks John. I looked into items you suggested and now have my messages
reporting that they can't be delivered and moved into badmail. A large step
ahead.
I have found an article in TechNet and will be reading up and verifying this
particular server has been properly configured.
Here is the link to the article.
http://www.microsoft.com/TechNet/iis/mail.asp
Here is my code, as you can see it's just a simple test page.
<SCRIPT LANGUAGE="VBSCRIPT">
<%
Dim objNewMail
Set objNewMail = CreateObject("CDONTS.NewMail")
objNewMail.Send "blithe.brandon@i...",
"blithe.brandon@i...", "Testing", "Testing CDONTS", 2
Set objNewMail = Nothing
%>
</SCRIPT>
Thanks for your suggestions. I will let you know how things go.
Blithe
-----Original Message-----
From: Hudak, John [mailto:John.Hudak@w...]
Sent: Wednesday, December 06, 2000 4:52 AM
To: ASP CDO
Subject: [asp_cdo] Re: cdonts mail sitting in queue folder
I can't be sure without seeing your code, but one of the issues that I had
in the past was with the Fully Qualified Domain Name of the web server.
Most SMTP servers are designed to do a reverse DNS lookup on any SMTP
connection to help detect spammers. If your box does not have a Fully
Qualified Domain Name, your mail might be refused by the servers you are
trying to send it to.
You might try configuring your SMTP services on your server to use ANOTHER
server as the relay agent (this is the "Smart Host" configuration). I have
been able to track down problems in that way as well.
I would be happy to help, please post your code and we can take a look at
it. Usually, issues with CDONTS are network related. HOWEVER, I have seen
problems with the CDONTS.dll from a versioning standpoint. For instance, if
you are using Exchange 5.5 on your network, you will need to get the
CDONTS.dll off of your Exchange server and register it on your IIS box, as
version 5.0 ships with the option pack. This issue is of course not
applicable if you are using 2000 Server.
Again, I would be happy to help.
John F. Hudak
Programmer/Consultant
Whitlockebs
Moving Business on the Web
http://www.whitlockebs.com/
P xxx.xxx.xxxx x642
xxx.xxx.xxxx
F xxx.xxx.xxxx
Message #5 by "Hudak, John" <John.Hudak@w...> on Wed, 6 Dec 2000 22:47:32 -0500
|
|
Hi Brandon,
Great! Glad you are making headway. I use a slightly different syntax with
my pages:
objMail = Server.CreateObject("CDONTS.NewMail")
objMail.To = "john.hudak@w..."
objMail.Body = "This is a test."
objMail.Subject = "Test Mail"
objMail.Send
Set objMail = Nothing
You might want to give it a shot, I have seen stranger things happen! But,
as I said before, most of the CDONTS problems that I have encountered have
been network related or config problems on the SMTP service.
Thanks!
John F. Hudak
Programmer/Consultant
Whitlockebs
Moving Business on the Web
http://www.whitlockebs.com/
P xxx.xxx.xxxx x642
xxx.xxx.xxxx
F xxx.xxx.xxxx
-----Original Message-----
From: Brandon, Blithe [mailto:bbrandon@i...]
Sent: Wednesday, December 06, 2000 6:20 PM
To: ASP CDO
Subject: [asp_cdo] Re: cdonts mail sitting in queue folder
Thanks John. I looked into items you suggested and now have my messages
reporting that they can't be delivered and moved into badmail. A large step
ahead.
I have found an article in TechNet and will be reading up and verifying this
particular server has been properly configured.
Here is the link to the article.
http://www.microsoft.com/TechNet/iis/mail.asp
Here is my code, as you can see it's just a simple test page.
<SCRIPT LANGUAGE="VBSCRIPT">
<%
Dim objNewMail
Set objNewMail = CreateObject("CDONTS.NewMail")
objNewMail.Send "blithe.brandon@i...",
"blithe.brandon@i...", "Testing", "Testing CDONTS", 2
Set objNewMail = Nothing
%>
</SCRIPT>
Thanks for your suggestions. I will let you know how things go.
Blithe
-----Original Message-----
From: Hudak, John [mailto:John.Hudak@w...]
Sent: Wednesday, December 06, 2000 4:52 AM
To: ASP CDO
Subject: [asp_cdo] Re: cdonts mail sitting in queue folder
I can't be sure without seeing your code, but one of the issues that I had
in the past was with the Fully Qualified Domain Name of the web server.
Most SMTP servers are designed to do a reverse DNS lookup on any SMTP
connection to help detect spammers. If your box does not have a Fully
Qualified Domain Name, your mail might be refused by the servers you are
trying to send it to.
You might try configuring your SMTP services on your server to use ANOTHER
server as the relay agent (this is the "Smart Host" configuration). I have
been able to track down problems in that way as well.
I would be happy to help, please post your code and we can take a look at
it. Usually, issues with CDONTS are network related. HOWEVER, I have seen
problems with the CDONTS.dll from a versioning standpoint. For instance, if
you are using Exchange 5.5 on your network, you will need to get the
CDONTS.dll off of your Exchange server and register it on your IIS box, as
version 5.0 ships with the option pack. This issue is of course not
applicable if you are using 2000 Server.
Again, I would be happy to help.
John F. Hudak
Programmer/Consultant
Whitlockebs
Moving Business on the Web
http://www.whitlockebs.com/
P xxx.xxx.xxxx x642
xxx.xxx.xxxx
F xxx.xxx.xxxx
Message #6 by "Frankie, Loh Teck Seng" <lohts@p...> on Thu, 14 Dec 2000 17:45:47 +0800
|
|
Hi, has anyone try to send mail to a mail box that within the company's mail
exchange system. (not internet).
Thanks.
-----Original Message-----
From: Hudak, John [mailto:John.Hudak@w...]
Sent: 07 December 2000 11:48
To: ASP CDO
Subject: [asp_cdo] Re: cdonts mail sitting in queue folder
Hi Brandon,
Great! Glad you are making headway. I use a slightly different syntax with
my pages:
objMail = Server.CreateObject("CDONTS.NewMail")
objMail.To = "john.hudak@w..."
objMail.Body = "This is a test."
objMail.Subject = "Test Mail"
objMail.Send
Set objMail = Nothing
You might want to give it a shot, I have seen stranger things happen! But,
as I said before, most of the CDONTS problems that I have encountered have
been network related or config problems on the SMTP service.
Thanks!
John F. Hudak
Programmer/Consultant
Whitlockebs
Moving Business on the Web
http://www.whitlockebs.com/
P xxx.xxx.xxxx x642
xxx.xxx.xxxx
F xxx.xxx.xxxx
-----Original Message-----
From: Brandon, Blithe [mailto:bbrandon@i...]
Sent: Wednesday, December 06, 2000 6:20 PM
To: ASP CDO
Subject: [asp_cdo] Re: cdonts mail sitting in queue folder
Thanks John. I looked into items you suggested and now have my messages
reporting that they can't be delivered and moved into badmail. A large step
ahead.
I have found an article in TechNet and will be reading up and verifying this
particular server has been properly configured.
Here is the link to the article.
http://www.microsoft.com/TechNet/iis/mail.asp
Here is my code, as you can see it's just a simple test page.
<SCRIPT LANGUAGE="VBSCRIPT">
<%
Dim objNewMail
Set objNewMail = CreateObject("CDONTS.NewMail")
objNewMail.Send "blithe.brandon@i...",
"blithe.brandon@i...", "Testing", "Testing CDONTS", 2
Set objNewMail = Nothing
%>
</SCRIPT>
Thanks for your suggestions. I will let you know how things go.
Blithe
-----Original Message-----
From: Hudak, John [mailto:John.Hudak@w...]
Sent: Wednesday, December 06, 2000 4:52 AM
To: ASP CDO
Subject: [asp_cdo] Re: cdonts mail sitting in queue folder
I can't be sure without seeing your code, but one of the issues that I had
in the past was with the Fully Qualified Domain Name of the web server.
Most SMTP servers are designed to do a reverse DNS lookup on any SMTP
connection to help detect spammers. If your box does not have a Fully
Qualified Domain Name, your mail might be refused by the servers you are
trying to send it to.
You might try configuring your SMTP services on your server to use ANOTHER
server as the relay agent (this is the "Smart Host" configuration). I have
been able to track down problems in that way as well.
I would be happy to help, please post your code and we can take a look at
it. Usually, issues with CDONTS are network related. HOWEVER, I have seen
problems with the CDONTS.dll from a versioning standpoint. For instance, if
you are using Exchange 5.5 on your network, you will need to get the
CDONTS.dll off of your Exchange server and register it on your IIS box, as
version 5.0 ships with the option pack. This issue is of course not
applicable if you are using 2000 Server.
Again, I would be happy to help.
John F. Hudak
Programmer/Consultant
Whitlockebs
Moving Business on the Web
http://www.whitlockebs.com/
P xxx.xxx.xxxx x642
xxx.xxx.xxxx
F xxx.xxx.xxxx
---
You are currently subscribed to asp_cdo as: $subst('Recip.EmailAddr')
To unsubscribe send a blank email to leave-asp_cdo-$subst('Recip.MemberIDChar')@p2p.wrox.com
|
|
 |