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;
}
idSMTP1->Port = 25;beneathidSMTP1->UseTLS = utNoTLSSupport;– LaKraven Jan 2 at 14:52Portproperty remains set to25as expected whenConnect()is called. – Remy Lebeau Jan 3 at 22:50TIdIOHandler::Destinationproperty being set after thePortproperty has been set? That would override thePortsetting.TIdTCPClientdoes have its ownDestinationproperty that gets assigned to theTIdIOHandler::Destinationproperty byConnect()(personally, I don't see whyDestinationeven exists, it is not used by anything in Indy). – Remy Lebeau Jan 3 at 22:54