I have a client attempting to connect SMTP server. I have the OnStatus event linked to the smtp client and see the
Resolving / Connecting / Connected states. But sometimes there is a hangup / application freezes when trying to connect. I see the Connected state being raised from OnStatus though. What could the issue be. I ruled out the Resolving DNS ans et both ConnectTimeout and Readtimeout settings on smtp as shown here:
smtp.OnStatus := SMTPStatus;
smtp.ConnectTimeout := 10000;
smtp.ReadTimeout := 10000;
smtp.Connect;
// SOMETIMES MY LOG DOES NOT GET HERE Log('AfterConnect');
if smtp.Connected then
begin
smtp.Send(Mess);
smtp.Disconnect;
end
On about 600KB attachment it seems to be getting stuck on encoding the attachment part and never completes, currently the encoding type is the default one.
10/3/2012 10:21:43 AM Status: Resolving hostname XXXXXXXXXX.com.
10/3/2012 10:21:43 AM Status: Connecting to 10.5.2.171.
10/3/2012 10:21:44 AM Status: Connected.
10/3/2012 10:21:45 AM Status: Encoding text
10/3/2012 10:21:45 AM Status: Encoding attachment