Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ksmtp for openSUSE:Factory checked in at 2021-10-13 18:02:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ksmtp (Old) and /work/SRC/openSUSE:Factory/.ksmtp.new.2443 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ksmtp" Wed Oct 13 18:02:50 2021 rev:49 rq:923969 version:21.08.2 Changes: -------- --- /work/SRC/openSUSE:Factory/ksmtp/ksmtp.changes 2021-09-04 22:35:30.336163514 +0200 +++ /work/SRC/openSUSE:Factory/.ksmtp.new.2443/ksmtp.changes 2021-10-13 18:03:46.267056827 +0200 @@ -1,0 +2,10 @@ +Tue Oct 5 16:28:44 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- Update to 21.08.2 + * New bugfix release + * For more details please see: + * https://kde.org/announcements/gear/21.08.2/ +- Changes since 21.08.1: + * Emit an error rather than reconnect when SSL errors are not ignored (kde#423424) + +------------------------------------------------------------------- Old: ---- ksmtp-21.08.1.tar.xz ksmtp-21.08.1.tar.xz.sig New: ---- ksmtp-21.08.2.tar.xz ksmtp-21.08.2.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ksmtp.spec ++++++ --- /var/tmp/diff_new_pack.c4mroT/_old 2021-10-13 18:03:46.847057736 +0200 +++ /var/tmp/diff_new_pack.c4mroT/_new 2021-10-13 18:03:46.851057742 +0200 @@ -18,7 +18,7 @@ %bcond_without lang Name: ksmtp -Version: 21.08.1 +Version: 21.08.2 Release: 0 Summary: Job-based library to send email through an SMTP server License: LGPL-2.1-or-later ++++++ ksmtp-21.08.1.tar.xz -> ksmtp-21.08.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-21.08.1/.gitlab-ci.yml new/ksmtp-21.08.2/.gitlab-ci.yml --- old/ksmtp-21.08.1/.gitlab-ci.yml 2021-08-08 17:31:13.000000000 +0200 +++ new/ksmtp-21.08.2/.gitlab-ci.yml 2021-09-29 17:41:14.000000000 +0200 @@ -31,4 +31,4 @@ - cd build && run-clang-tidy variables: PLATFORM: SUSEQt5.15 - BRANCH_GROUP: kf5-qt5 + BRANCH_GROUP: stable-kf5-qt5 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-21.08.1/CMakeLists.txt new/ksmtp-21.08.2/CMakeLists.txt --- old/ksmtp-21.08.1/CMakeLists.txt 2021-08-08 17:31:13.000000000 +0200 +++ new/ksmtp-21.08.2/CMakeLists.txt 2021-09-29 17:41:14.000000000 +0200 @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.16 FATAL_ERROR) -set(PIM_VERSION "5.18.1") +set(PIM_VERSION "5.18.2") project(KSMTP VERSION ${PIM_VERSION}) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-21.08.1/po/zh_CN/libksmtp5.po new/ksmtp-21.08.2/po/zh_CN/libksmtp5.po --- old/ksmtp-21.08.1/po/zh_CN/libksmtp5.po 2021-08-31 02:39:34.000000000 +0200 +++ new/ksmtp-21.08.2/po/zh_CN/libksmtp5.po 2021-10-05 07:47:01.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-01-27 03:10+0100\n" -"PO-Revision-Date: 2021-08-30 11:45\n" +"PO-Revision-Date: 2021-09-27 13:10\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-21.08.1/src/sessionthread.cpp new/ksmtp-21.08.2/src/sessionthread.cpp --- old/ksmtp-21.08.1/src/sessionthread.cpp 2021-08-08 17:31:13.000000000 +0200 +++ new/ksmtp-21.08.2/src/sessionthread.cpp 2021-09-29 17:41:14.000000000 +0200 @@ -240,10 +240,11 @@ if (ignoreError) { Q_EMIT encryptionNegotiationResult(true, m_socket->sessionProtocol()); } else { - // reconnect in unencrypted mode, so new commands can be issued + const auto sslErrors = m_socket->sslHandshakeErrors(); + QStringList errorMsgs; + errorMsgs.reserve(sslErrors.size()); + std::transform(sslErrors.begin(), sslErrors.end(), std::back_inserter(errorMsgs), std::mem_fn(&QSslError::errorString)); + Q_EMIT m_parentSession->connectionError(errorMsgs.join(QLatin1Char('\n'))); m_socket->disconnectFromHost(); - m_socket->waitForDisconnected(); - m_socket->connectToHost(m_hostName, m_port); - Q_EMIT encryptionNegotiationResult(false, QSsl::UnknownProtocol); } }
