|
Home > Archive > IIS Server Security > January 2004 > IIS 6.0 (ASP Error, SMTP related) IIS Security Too High?
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
IIS 6.0 (ASP Error, SMTP related) IIS Security Too High?
|
|
| =?Utf-8?B?RGVycmljaw==?= 2004-01-24, 1:58 am |
| All:
I'm using an application called Workgroupmail, it's a mail server application. It has a Webmail package that integrates into IIS as a Virtual Web under the default web, it uses ASP.
I can browse the login page, and compose message page. However, when I attempt to SEND mail, I get the following errror...
=============================
WorkgroupMail API error '800af10a'
Insufficient memory to perform operation.
/Webmail/compose.asp, line 135 <-- SOMETIMES LINE 132
=============================
Here is an excerpt of the compose.asp page (line 135 and 132) for additional reference.....
Line 132 bSent = msg.SendUsingSMTPKeepCopy("127.0.0.1")
Line 135 bSent = msg.SendUsingSMTP("127.0.0.1")
I did a TELNET 127.0.0.1 25 (telnet to port 25 SMTP on localhost) to verify that it answers. And it does.
I've run into this problem once before, I remember the fix was something easy. Of course now I can't seem to remember what my solution was.
Here is my system configuration...
Windows Server 2003 Standard
IIS 6.0 (ALLOW ASP IS ALREADY SELECTED)
2 Network Interface Cards
1 Public: 192.168.2.2 (FIREWALL DOES PORT FORWARDING TO GET YOU HERE)
2 Internal: 192.168.1.61
Any ideas? Your assistance is greatly appreciated.
| |
| David Wang [Msft] 2004-01-24, 1:58 am |
| One thing I can think of is that since IIS6 runs without privileges to write
to the server, your ASP page is not able to cause the message to be written
to the "SMTP Queue".
For example, people using CDO have seen this sort of problem until they
allowed IIS process identity to write to the SMTP queue directory.
--
//David
IIS
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"Derrick" <anonymous@discussions.microsoft.com> wrote in message
news:7C38D6A7-4BB8-4A67-A37D-7C66371F7B2A@microsoft.com...
All:
I'm using an application called Workgroupmail, it's a mail server
application. It has a Webmail package that integrates into IIS as a Virtual
Web under the default web, it uses ASP.
I can browse the login page, and compose message page. However, when I
attempt to SEND mail, I get the following errror...
=============================
WorkgroupMail API error '800af10a'
Insufficient memory to perform operation.
/Webmail/compose.asp, line 135 <-- SOMETIMES LINE 132
=============================
Here is an excerpt of the compose.asp page (line 135 and 132) for additional
reference.....
Line 132 bSent = msg.SendUsingSMTPKeepCopy("127.0.0.1")
Line 135 bSent = msg.SendUsingSMTP("127.0.0.1")
I did a TELNET 127.0.0.1 25 (telnet to port 25 SMTP on localhost) to verify
that it answers. And it does.
I've run into this problem once before, I remember the fix was something
easy. Of course now I can't seem to remember what my solution was.
Here is my system configuration...
Windows Server 2003 Standard
IIS 6.0 (ALLOW ASP IS ALREADY SELECTED)
2 Network Interface Cards
1 Public: 192.168.2.2 (FIREWALL DOES PORT FORWARDING TO GET YOU
HERE)
2 Internal: 192.168.1.61
Any ideas? Your assistance is greatly appreciated.
|
|
|
|
|