my friend gave me a program which runs in his laptop, he coded with system.webmail and C#, that program can send the email in his machine, but when i run and send it out in my machine, the email didn't send and get "Failure Sending Mail", but in his computer, he can send with his internet. But I am still getting error, even i can't ping to SMTP server or telnet. What will be issue, does my ISP ban the port, or ISP firewall ban the port?

I use port 25 and also 587 too. but it doesn't do any different at all.

link|improve this question

73% accept rate
It's probably a configuration issue. Does his program try to send the e-mail through a local SMTP server on his machine, or a remote server? It could be any number of things, so additional information would be helpful. – Tim Aug 4 '11 at 18:33
the remote server (SMTP.LIVE.COM) along with authentication; the configuration is fine too. It works in his network (Singapore), but that doesn't work in my PC (US). – XML guy Aug 4 '11 at 18:35
Are you able to authenticate to the server? Do you have the source code? – Tim Aug 4 '11 at 18:38
Are you running any virus checkers or firewalls on your PC? Have a look at this stackoverflow.com/questions/3194978/… – John Aug 4 '11 at 18:39
Yes, in his network (Singapore), it authenticates and works, but when i use it in my network(US), i am getting this failure error. – XML guy Aug 4 '11 at 18:40
show 1 more comment
feedback

2 Answers

up vote 1 down vote accepted

There is an unfixed bug in System.Mail.SmtpClient where sending mail to a domain-enabled (Exchange) server fails if you cannot domain authenticate, even if username and password would authenticate, but only if you are farther than ~10ms from domain server.

link|improve this answer
You know what, I tried to telnet smtp.live.com 25, i can't get connect to it. – XML guy Aug 4 '11 at 18:57
Well then that's your problem. Have you tried port 587 yet? – Joshua Aug 4 '11 at 19:06
1  
Incidentally, tcptraceroute can be used to locate the offender. If its your ISP, bug them. – Joshua Aug 4 '11 at 19:06
ya, thanks for that, I will try to bug them tonight to resolve the problem :) – XML guy Aug 4 '11 at 19:13
When I bug them, they want me to upgrade the services haha :) – XML guy Aug 4 '11 at 20:53
show 1 more comment
feedback

I have a same issue before and it turned out that the email provider "Smart Mail" is blocking my email, The solution I simply added the email address at the safe list in my destination email.

link|improve this answer
well, i am sending mail to same address as sender email address. in my case, this may not be issues. – XML guy Aug 4 '11 at 18:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.