473,385 Members | 1,396 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

CDO error 8004020f

Hi,

Does anybody have an idea why is this happening. The following code works
great on my development machine (windows 2000 pro), but on the test server
(Windows 2000 Server) it can only send emails to addresses on our domain. If
I specify other address I just get a 8004020f error message. The smtp server
I'm trying to send is on a separate machine (Windows NT Server).
I think it has something to do with web server configuration, or even maybe
smtp server? But the fact that I can send it from my machine throws me
off... I also tried a Perl script to send email using the same smtp server
and I have the same problem, works from my machine, fails on test server.
Anyone came across something like that?

Thanks,
Alex

Code follows:

Set msg = Server.CreateObject("CDO.Message")

Dim iConf
Set iConf = CreateObject("CDO.Configuration")
Dim Flds
Set Flds = iConf.Fields
Flds("http://schemas.microsoft.com/cdo/configuration/Sendusing") = 2
Flds("http://schemas.microsoft.com/cdo/configuration/smtpserver") =
"11.11.111.11" 'real IP actually used
Flds("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25

Flds.Update

Set msg.Configuration = iConf
'Works on my machine, but fails on the server.
msg.To = "us**@outsidedomain.com"
msg.From = "us**@ourdomain.com"
msg.Subject = "Test - " & now()
msg.TextBody = "Test message - " & now()
msg.Send

set msg = nothing
Jul 19 '05 #1
4 40858
And what is the description of this 8004020f error?

Does IUSR have permissions to write files to \inetpub\mailroot\pickup?

Ray at work

"alex" <al*****@yahoo.com> wrote in message
news:uO*************@TK2MSFTNGP10.phx.gbl...
Hi,

Does anybody have an idea why is this happening. The following code works
great on my development machine (windows 2000 pro), but on the test server
(Windows 2000 Server) it can only send emails to addresses on our domain. If I specify other address I just get a 8004020f error message. The smtp server I'm trying to send is on a separate machine (Windows NT Server).
I think it has something to do with web server configuration, or even maybe smtp server? But the fact that I can send it from my machine throws me
off... I also tried a Perl script to send email using the same smtp server
and I have the same problem, works from my machine, fails on test server.
Anyone came across something like that?

Thanks,
Alex

Code follows:

Set msg = Server.CreateObject("CDO.Message")

Dim iConf
Set iConf = CreateObject("CDO.Configuration")
Dim Flds
Set Flds = iConf.Fields
Flds("http://schemas.microsoft.com/cdo/configuration/Sendusing") = 2
Flds("http://schemas.microsoft.com/cdo/configuration/smtpserver") =
"11.11.111.11" 'real IP actually used
Flds("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
Flds.Update

Set msg.Configuration = iConf
'Works on my machine, but fails on the server.
msg.To = "us**@outsidedomain.com"
msg.From = "us**@ourdomain.com"
msg.Subject = "Test - " & now()
msg.TextBody = "Test message - " & now()
msg.Send

set msg = nothing

Jul 19 '05 #2
Thanks for the reply. It doesn't actually give me an error description just:
error '8004020f'
/mailtest.asp, line 42

The smtp server is not the default smtp server on the web server, but i
specify the IP address of a different SMTP server (on separate machine). So
i don't think it event uses those directories. And i can send it to emails
on our domain, but not to email on other domains.

I forgot to mention that the SMTP server is Eudora WorldMail on windows nt
server. But CDO should work with any SMTP server... and it sucessfully sends
emails to my domain...

Thanks,
alex

"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
news:eh**************@TK2MSFTNGP12.phx.gbl...
And what is the description of this 8004020f error?

Does IUSR have permissions to write files to \inetpub\mailroot\pickup?

Ray at work

"alex" <al*****@yahoo.com> wrote in message
news:uO*************@TK2MSFTNGP10.phx.gbl...
Hi,

Does anybody have an idea why is this happening. The following code works great on my development machine (windows 2000 pro), but on the test server (Windows 2000 Server) it can only send emails to addresses on our domain.
If
I specify other address I just get a 8004020f error message. The smtp

server
I'm trying to send is on a separate machine (Windows NT Server).
I think it has something to do with web server configuration, or even

maybe
smtp server? But the fact that I can send it from my machine throws me
off... I also tried a Perl script to send email using the same smtp

server and I have the same problem, works from my machine, fails on test server. Anyone came across something like that?

Thanks,
Alex

Code follows:

Set msg = Server.CreateObject("CDO.Message")

Dim iConf
Set iConf = CreateObject("CDO.Configuration")
Dim Flds
Set Flds = iConf.Fields
Flds("http://schemas.microsoft.com/cdo/configuration/Sendusing") = 2
Flds("http://schemas.microsoft.com/cdo/configuration/smtpserver") =
"11.11.111.11" 'real IP actually used
Flds("http://schemas.microsoft.com/cdo/configuration/smtpserverport") =

25

Flds.Update

Set msg.Configuration = iConf
'Works on my machine, but fails on the server.
msg.To = "us**@outsidedomain.com"
msg.From = "us**@ourdomain.com"
msg.Subject = "Test - " & now()
msg.TextBody = "Test message - " & now()
msg.Send

set msg = nothing


Jul 19 '05 #3
It sounds like a SMTP relaying permissions problem. Does your SMTP server
allow relaying to other domains of e-mails that originate from your IIS
server's IP?

Ray at work

"alex" <al*****@yahoo.com> wrote in message
news:us**************@TK2MSFTNGP09.phx.gbl...
Thanks for the reply. It doesn't actually give me an error description just: error '8004020f'
/mailtest.asp, line 42

The smtp server is not the default smtp server on the web server, but i
specify the IP address of a different SMTP server (on separate machine). So i don't think it event uses those directories. And i can send it to emails
on our domain, but not to email on other domains.

I forgot to mention that the SMTP server is Eudora WorldMail on windows nt
server. But CDO should work with any SMTP server... and it sucessfully sends emails to my domain...

Thanks,
alex

Jul 19 '05 #4
Thanks Ray,

Relaying was the problem. My machine goes through a proxy server and the
proxy's IP address was on the allowed list for relaying, that's why it
worked on my machine. After we added web server IP address to allow list, it
works as expected.

Thanks!

"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
news:uu**************@TK2MSFTNGP10.phx.gbl...
It sounds like a SMTP relaying permissions problem. Does your SMTP server
allow relaying to other domains of e-mails that originate from your IIS
server's IP?

Ray at work

"alex" <al*****@yahoo.com> wrote in message
news:us**************@TK2MSFTNGP09.phx.gbl...
Thanks for the reply. It doesn't actually give me an error description

just:
error '8004020f'
/mailtest.asp, line 42

The smtp server is not the default smtp server on the web server, but i
specify the IP address of a different SMTP server (on separate machine).

So
i don't think it event uses those directories. And i can send it to emails on our domain, but not to email on other domains.

I forgot to mention that the SMTP server is Eudora WorldMail on windows nt server. But CDO should work with any SMTP server... and it sucessfully

sends
emails to my domain...

Thanks,
alex


Jul 19 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Paco | last post by:
I'm having a problem with an ASP page I've made and was hoping someone out there can help. My page sends an email using CDO to a username pulled from a database as follows: With cdoMessage...
6
by: Owen | last post by:
Hi, can somebody help me please... I'm trying to set up a very simple asp page that sends me an email when it runs. This is just to try and get CDOSYS working so I can send out emails from my...
1
by: Luis andyza | last post by:
I use CDO.Message to send e-mail from an asp page (similar to the method at http://www.aspfaq.com/show.asp?id=2305). One of my testers entered an invalid e-mail address and got an 8004020F error....
0
by: gariboldo | last post by:
Have all a nice day, I have the following problem: I have in my site a page ASP that contains a form and i'm trying to send it to an email address with the following script: Set cdoConfig =...
2
by: Mario Michela | last post by:
i've been working for 4 days trying to accomplish something that should take 20 minutes.. I have an asp page that take user info, ie name, address phone, email. it sends a copy to email addres A...
0
by: Larry D | last post by:
I have a client with a site that users can register at, we collect their emails, if they have one, in an Access db. I have a page that uses CDOSYS to send messages to those emails but I am getting...
2
by: candywang | last post by:
first , my english is bad~~~I'm sorry! I got some problem. Flds("http://schemas.microsoft.com/cdo/configuration/smtpserver") =real ip(remote machine)...
2
by: gduggan | last post by:
I hope someone can help me solve this problem. I have a client who is hosting their website on an Exchange server running Windows Server 2003 OS. They are currently unable to receive email from...
7
by: ayush patel | last post by:
Hi everyone, I am writing ASP code to send email using SMTP.I am getting error '8004020f' at .Send. this seems to be a common error. my SMTP server relays to anonymous email addresses.there is...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.