Merge PR #725: MailNotification: Fix double mail ending

master
jenkins 2023-12-18 10:06:58 +01:00
commit 659bd2ec82
1 changed files with 1 additions and 1 deletions

View File

@ -351,7 +351,7 @@ void SmtpClient::processServerResponse(int responseCode, const QString &response
break;
case StateBody:
if (responseCode == 354) {
send(m_messageData + "\r\n.\r\n");
send(m_messageData);
setState(StateQuit);
} else {
handleUnexpectedSmtpCode(responseCode, response);