I am using IdSMTP and creating / destroying the TIdSMTP component dynamically in my form. Most of the time there are no issues with the smtp.Connect but I found that there are situations where the main UI will get stuck and become unresponsive.
I added the ConnectTimeout and the ReadTimeout properties but still getting the same issue. The application becomes unresponsive and forces us to kill the process.
smtp.ConnectTimeout := 10000;
smtp.ReadTimeout := 10000;
smtp.Connect;
if smtp.Connected then
begin
smtp.Send(Mess);
smtp.Disconnect;
end
I have a OnStatus event bound to stmp that is being raised by idstmp control Resolving Connecting Connected
But for some reason the Connect still makes the application free and act unresponsive.
ConnectTimeoutonly applies when the socket is actually connecting to the server, and theReadTimeoutonly applies when reading data after the connection is established. Before either of those can occur,TIdSMTPhas to perform a DNS lookup of the specifiedHostif it is not already an IP address, and that DNS lookup is performed by the OS outside of Indy's control. If your machine's DNS settings are not setup correctly, that can cause this type of deadlock inConnect(). You can verify that if theOnStatusevent reacheshsResolvingbut does not reachhsConnecting. – Remy Lebeau Sep 17 '12 at 20:31TIdDNSResolvercomponent for your own DNS queries, which has aWaitingTimeproperty (but that is currently only used for UDP-based queries, which are used if you are not requesting AXFR or IXFR records, which use TCP-based queries instead). – Remy Lebeau Sep 18 '12 at 2:19