e-mail problem

e-mail problem

am 13.10.2005 18:17:04 von newbie

Hello,

We moved our web from win2k to win2003 server. Then we can not send e-mail
to our domain.

i.e. our domain aaaa.com
we can send e-mail from web (use java script) to xxx@yahoo.com,
xxx@hotmail.com..., but we can not send e-mail to xxx@aaaa.com

All sent to xxx@aaaa.com e-mails will save in the drop folder.

How can we fix this problem?

Thanks

Re: e-mail problem

am 13.10.2005 20:29:21 von IISMVP2005

IIS6 does not by default suppor the CDONTS.NewMail com object.

Simple fix - copy c:\WINDOWS\system32\cdonts.dll from another machine to the
2k3 machine and then in a CMD.EXE console type regsvr32
c:\WINDOWS\system32\cdonts.dll (change paths to what ever you are using)

http://www.microsoft.com/technet/prodtechnol/WindowsServer20 03/Library/IIS/25fbd102-a9b4-4e36-8311-1cb8f6c6243d.mspx

Not so simple fix - re-write your code to use CDO

--
Cheers

Chris

Chris Crowe
http://blog.crowe.co.nz


"Newbie" wrote in message
news:E2836EE0-959D-47E6-9067-83920414BA8F@microsoft.com...
> Hello,
>
> We moved our web from win2k to win2003 server. Then we can not send e-mail
> to our domain.
>
> i.e. our domain aaaa.com
> we can send e-mail from web (use java script) to xxx@yahoo.com,
> xxx@hotmail.com..., but we can not send e-mail to xxx@aaaa.com
>
> All sent to xxx@aaaa.com e-mails will save in the drop folder.
>
> How can we fix this problem?
>
> Thanks
>
>

Re: e-mail problem

am 13.10.2005 22:40:01 von Kristofer Gafvert

Hi,

It sounds like the SMTP server thinks the email's destination is the local
server, but it is in fact another server.

You probably has aaaa.com listed as a "Local Domain" in the SMTP
properties, or DNS settings are incorrect (either globaly or on your local
SMTP server).

For more information on "Local Domains" see:

http://www.microsoft.com/technet/prodtechnol/WindowsServer20 03/Library/IIS/e2156172-7118-4ff2-9a6a-1b7dd52580fa.mspx


--
Regards,
Kristofer Gafvert (IIS MVP)
http://www.gafvert.info/iis/ - IIS Related Info


Newbie wrote:

>Hello,
>
>We moved our web from win2k to win2003 server. Then we can not send e-mail
>to our domain.
>
>i.e. our domain aaaa.com
>we can send e-mail from web (use java script) to xxx@yahoo.com,
>xxx@hotmail.com..., but we can not send e-mail to xxx@aaaa.com
>
>All sent to xxx@aaaa.com e-mails will save in the drop folder.
>
>How can we fix this problem?
>
>Thanks

Re: e-mail problem

am 13.10.2005 22:43:29 von Kristofer Gafvert

Hi,

I don't understand why it would be a problem with the code. If it was, the
email would not end up in the Drop folder, would it? I mean, the drop
folder is where emails destinated for the local SMTP server ends up, so
the emails seems to have been processed by the SMTP server.


Or am i misunderstanding something?


--
Regards,
Kristofer Gafvert (IIS MVP)
http://www.gafvert.info/iis/ - IIS Related Info


Chris Crowe wrote:

>IIS6 does not by default suppor the CDONTS.NewMail com object.
>
>Simple fix - copy c:\WINDOWS\system32\cdonts.dll from another machine to
>the 2k3 machine and then in a CMD.EXE console type regsvr32
>c:\WINDOWS\system32\cdonts.dll (change paths to what ever you are using)
>
>http://www.microsoft.com/technet/prodtechnol/WindowsServer2 003/Library/IIS/25fbd102-a9b4-4e36-8311-1cb8f6c6243d.mspx
>
>Not so simple fix - re-write your code to use CDO