Link to home
Start Free TrialLog in
Avatar of scottspivey
scottspivey

asked on

poSendMail

my developers have creaed a vb program that wills end email based on conditions in our db.  they are using poSendMail to send the email, but everytime we run the program the email just goes to this folder and is never emailed:

C:\Inetpub\mailroot\Queue

i have checked to be sure that the SMTP engine in IIS is running and it is.  we have the smtphost set to localhost.  we also have a cdo mailer that runs in our ASP code on the web site that runs through the localhost SMTP engine and those email messages go through fine with no trouble.

the server that we have this VB script on for now while we are building and testing it is our staging server which we also use for our email server.  can the problem be that poSendMail looks to the email server SMTP engine rather than to the IIS SMTP engine?  anybody got any ideas?
ASKER CERTIFIED SOLUTION
Avatar of cool12399
cool12399

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of scottspivey
scottspivey

ASKER

cool12399,

port 25 is open.  we already have it open for the CDO mailer we use and for the email server software also.  i did a telnet just to be certain and was able to get in without any trouble.
Are there any errors in the windows event logs?

Is this page any help:

http://support.microsoft.com/kb/324272



cool12399,

well port 25 was not blocked on the server, but after many frustrating hours, and a lot of profanity, i finally realized what the issue is.  the default tcp port for SMTP was changed from 25 to 2500 by my email server software.  i looked at the properties for the SMTP server a hundred times and never noticed that until about 10 minutes ago.  so we can work around that issue in the script and make this work.  thx for the reply.  if i had been more hyped up on caffeine when you first posted it maybe i would have noticed that port change and saved me some hours of frustration.

thx,

scott
nmcdermaid,

i checked that article and that was not the issue.  i finally figure it out and posted it above.  thx for trying to help.

scott
lol :) yeah, hate it when that happens! (you bang your head thinking it must be a microsoft bug, or some other kind of bug,
then find out this is one of the few times 'you' made the mistake! ;))

glad to hear it is working great now! :)
i agree.  it is just so much easier to blame microsoft.  isn't that what they are for?

thx for the help.
>>  have a cdo mailer that runs in our ASP code on the web site that runs through the localhost SMTP engine and those email messages go through fine with no trouble.


So the localhost SMTP engine is configured to send to port 2500 also?
nmcdermaid,

that is a good question and one i posed to my developers.  the part that i may have quoted incorrectly is the cdo mailer feature.  we may be using a different system for sending the email.  but i am waiting on the response from my developer to see what is the difference.

we did make a change to this script to account for the port issue and everything is working fine now.

thx
glad you sorted it.