EML Files in Mailroot Queue
EML Files in Mailroot Queue
am 12.07.2007 00:38:00 von Rob
Hi,
I was wondering how I get my system to send the emails that are in the Queue
folder in the Mailroot folder? I have a WinXP SP2 with IIS and I'm using an
ASP form. However, the emails are not being sent.
Any help would be nice.
Thanks In Advance,
R
Re: EML Files in Mailroot Queue
am 12.07.2007 04:34:52 von Ken Schaefer
- Ensure that the SMTP service is running (in Services MMC snapin)
- Ensure that your machine is able to resolve MX records for the destination
domain in the DNS
Cheers
Ken
"Rob" wrote in message
news:E39D2143-5F54-4D1B-A8A2-65F3225604F8@microsoft.com...
> Hi,
>
> I was wondering how I get my system to send the emails that are in the
> Queue
> folder in the Mailroot folder? I have a WinXP SP2 with IIS and I'm using
> an
> ASP form. However, the emails are not being sent.
>
> Any help would be nice.
>
> Thanks In Advance,
> R
>
>
Re: EML Files in Mailroot Queue
am 12.07.2007 08:59:40 von Sven Lindhardt
Hi,
I have the same problem as Rob. The SMTP service is running.
Could you please explain "Ensure that your machine is able to resolve MX
records for the destination domain in the DNS"
Thanks in advance
Sven
"Ken Schaefer" wrote in message
news:Osn980CxHHA.5108@TK2MSFTNGP03.phx.gbl...
>- Ensure that the SMTP service is running (in Services MMC snapin)
> - Ensure that your machine is able to resolve MX records for the
> destination domain in the DNS
>
> Cheers
> Ken
>
> "Rob" wrote in message
> news:E39D2143-5F54-4D1B-A8A2-65F3225604F8@microsoft.com...
>> Hi,
>>
>> I was wondering how I get my system to send the emails that are in the
>> Queue
>> folder in the Mailroot folder? I have a WinXP SP2 with IIS and I'm using
>> an
>> ASP form. However, the emails are not being sent.
>>
>> Any help would be nice.
>>
>> Thanks In Advance,
>> R
>>
>>
>
>
Re: EML Files in Mailroot Queue
am 12.07.2007 16:24:03 von Rob
Could you please (or someone else) explain how I see if it can resolve MX
records?
Thanks Soooo Much!
R
"Ken Schaefer" wrote:
> - Ensure that the SMTP service is running (in Services MMC snapin)
> - Ensure that your machine is able to resolve MX records for the destination
> domain in the DNS
>
> Cheers
> Ken
>
> "Rob" wrote in message
> news:E39D2143-5F54-4D1B-A8A2-65F3225604F8@microsoft.com...
> > Hi,
> >
> > I was wondering how I get my system to send the emails that are in the
> > Queue
> > folder in the Mailroot folder? I have a WinXP SP2 with IIS and I'm using
> > an
> > ASP form. However, the emails are not being sent.
> >
> > Any help would be nice.
> >
> > Thanks In Advance,
> > R
> >
> >
>
>
Re: EML Files in Mailroot Queue
am 13.07.2007 16:10:53 von .._..
Didja look in the SMTP service logs? Often it will tell you exactly what is
wrong.
To see if it can do MX lookup. First, get the domain name of one of the
outboud email recipient addresses blahblah@whatever.com. You need
"whatever.com" Log on directly to that server.
Start, run "CMD" Enter.
Type;
nslookup (ENTER)
(some stuff will come back listing your DNS servers, if error occurs, STOP.
That's the problem, you have no DNS on that server so it can't look up where
to send the mail, reconfigure your network and server until you get proper
DNS resolution.)
Then type:
set q=mx (ENTER) (This tells nslookup you want it to get the mx record.)
Then type:
"whatever.com"
You should get back a hostname. ("mail.whatever.com" but not always that)
An authoritative DNS server name (irrelevant at this point) and an IP.
If you do, DNS is not the problem and something else is wrong.
Note however, there are about 500 different types of failures that could
cause email to get stuck.
"Rob" wrote in message
news:1378CFBD-DDFA-49D5-ADF1-3CC15336416D@microsoft.com...
> Could you please (or someone else) explain how I see if it can resolve MX
> records?
>
> Thanks Soooo Much!
> R
>
> "Ken Schaefer" wrote:
>
>> - Ensure that the SMTP service is running (in Services MMC snapin)
>> - Ensure that your machine is able to resolve MX records for the
>> destination
>> domain in the DNS
>>
>> Cheers
>> Ken
>>
>> "Rob" wrote in message
>> news:E39D2143-5F54-4D1B-A8A2-65F3225604F8@microsoft.com...
>> > Hi,
>> >
>> > I was wondering how I get my system to send the emails that are in the
>> > Queue
>> > folder in the Mailroot folder? I have a WinXP SP2 with IIS and I'm
>> > using
>> > an
>> > ASP form. However, the emails are not being sent.
>> >
>> > Any help would be nice.
>> >
>> > Thanks In Advance,
>> > R
>> >
>> >
>>
>>
Re: EML Files in Mailroot Queue
am 14.07.2007 05:09:20 von Ken Schaefer
Hi,
In order to deliver mail to someone@somedomain.com your SMTP server needs to
be able to:
a) query the public DNS system to locate an MX record (Mail Exchanger
record) for somedomain.com - this is basic name resolution
b) whatever ISP you are connected to must allow you to send mail directly
from your own SMTP server. Some prohibit this, and some also require that
"smart host" all mail through their mailservers.
Cheers
Ken
"Sven Lindhardt" wrote in message
news:uFz1DJFxHHA.4076@TK2MSFTNGP06.phx.gbl...
> Hi,
> I have the same problem as Rob. The SMTP service is running.
> Could you please explain "Ensure that your machine is able to resolve MX
> records for the destination domain in the DNS"
>
> Thanks in advance
> Sven
>
> "Ken Schaefer" wrote in message
> news:Osn980CxHHA.5108@TK2MSFTNGP03.phx.gbl...
>>- Ensure that the SMTP service is running (in Services MMC snapin)
>> - Ensure that your machine is able to resolve MX records for the
>> destination domain in the DNS
>>
>> Cheers
>> Ken
>>
>> "Rob" wrote in message
>> news:E39D2143-5F54-4D1B-A8A2-65F3225604F8@microsoft.com...
>>> Hi,
>>>
>>> I was wondering how I get my system to send the emails that are in the
>>> Queue
>>> folder in the Mailroot folder? I have a WinXP SP2 with IIS and I'm using
>>> an
>>> ASP form. However, the emails are not being sent.
>>>
>>> Any help would be nice.
>>>
>>> Thanks In Advance,
>>> R
>>>
>>>
>>
>>
>
>
Re: EML Files in Mailroot Queue
am 31.07.2007 10:55:26 von Kristofer Gafvert
Hi,
In addition to what have already been said, i would check the log file (it
should tell you why it is failing), and also make sure that your ISP does
not block you from sending emails.
If you have a non-business connection it is very likely that your ISP
prohibits you from sending emails. You will probably (depending on the
ISP), use the ISPs SMTP server. I suggest that you contact your ISP and
ask them, because the problem you are seeing is most likely due to your ISP.
A smart host may be a solution, but it depends on your ISP.
--
Regards,
Kristofer Gafvert
http://www.gafvert.info/iis/ - IIS Related Info
Rob wrote:
>Hi,
>
>I was wondering how I get my system to send the emails that are in the
>Queue
>folder in the Mailroot folder? I have a WinXP SP2 with IIS and I'm using an
>ASP form. However, the emails are not being sent.
>
>Any help would be nice.
>
>Thanks In Advance,
>R