Trying to send mail with Indy10, but it seems to want to use port 465 instead of port 25. I've tested it on various SMTP servers that allow port 25, but I only get the message:

Cannot connect to SMTP server (62.149.128.11:465), connect error 10060.

Here is my simple code:

idSMTP1->Host = "smtp.xxyy.com";
idSMTP1->Username = "myname@xxyy.com";
idSMTP1->Password = "mypassword";
idSMTP1->Port = 25;
idSMTP1->AuthType = satDefault;
idSMTP1->UseTLS = utNoTLSSupport;
try {
  idSMTP1->Connect();
  }
catch(...) {
  throw;
  }
link|improve this question
2  
Try moving idSMTP1->Port = 25; beneath idSMTP1->UseTLS = utNoTLSSupport; – LaKraven Jan 2 at 14:52
I tried to do it, but the problem remains the same: Cannot connect to SMTP server (62.149.128.11:465), connect error 10060. – user1125432 Jan 2 at 15:46
1  
Port 465 is the unofficial TLS port, so it is negiotiating TLS. Are you using a specific IOHandler? Make a WireShark Trace, maybe the remote end is asking for TLS? – whosrdaddy Jan 3 at 12:20
I am not able to reproduce this problem using the current public release of Indy 10. The Port property remains set to 25 as expected when Connect() is called. – Remy Lebeau Jan 3 at 22:50
By chance, is the TIdIOHandler::Destination property being set after the Port property has been set? That would override the Port setting. TIdTCPClient does have its own Destination property that gets assigned to the TIdIOHandler::Destination property by Connect() (personally, I don't see why Destination even exists, it is not used by anything in Indy). – Remy Lebeau Jan 3 at 22:54
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.