Caught SmtpClient::SendMessageTimeoutException
In Smtp::quit, SmtpClient::SendMessageTimeoutException is caught and if still connected to the smtp server, manually close the connection.
This commit is contained in:
parent
ef6194fb26
commit
ff2eb297c4
@ -419,9 +419,18 @@ bool SmtpClient::sendMail(MimeMessage& email)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void SmtpClient::quit()
|
void SmtpClient::quit()
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
sendMessage("QUIT");
|
sendMessage("QUIT");
|
||||||
}
|
}
|
||||||
|
catch(SmtpClient::SendMessageTimeoutException)
|
||||||
|
{
|
||||||
|
//Manually close the connection to the smtp server if message "QUIT" wasn't received by the smtp server
|
||||||
|
if(socket->state() == QAbstractSocket::ConnectedState || socket->state() == QAbstractSocket::ConnectingState || socket->state() == QAbstractSocket::HostLookupState)
|
||||||
|
socket->disconnectFromHost();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* [3] --- */
|
/* [3] --- */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user