slackware-current/source/kde/patch/kdepim/libkf5ksieve-16.04.3.diff
Patrick J Volkerding cdea680437 Fri Nov 8 23:23:40 UTC 2019
a/hostname-3.23-x86_64-1.txz:  Upgraded.
a/kernel-firmware-20191108_f1100dd-noarch-1.txz:  Upgraded.
ap/mariadb-10.4.10-x86_64-1.txz:  Upgraded.
kde/kdelibs-4.14.38-x86_64-5.txz:  Rebuilt.
  Remove hardcoded TLSv1 allowing TLSv1.1 and TLSv1.2. Thanks to PJ Beers.
kde/kdepim-4.14.10-x86_64-5.txz:  Rebuilt.
  Remove hardcoded TLSv1 allowing TLSv1.1 and TLSv1.2. Thanks to PJ Beers.
kde/kdepimlibs-4.14.10-x86_64-9.txz:  Rebuilt.
  Remove hardcoded TLSv1 allowing TLSv1.1 and TLSv1.2. Thanks to PJ Beers.
l/adwaita-icon-theme-3.34.3-noarch-1.txz:  Upgraded.
testing/packages/rust-1.39.0-x86_64-1.txz:  Upgraded.
2019-11-09 08:59:48 +01:00

11 lines
572 B
Diff

--- ./libksieve/kmanagesieve/session.cpp.orig 2015-06-25 12:47:38.000000000 -0500
+++ ./libksieve/kmanagesieve/session.cpp 2019-11-08 15:49:06.212790078 -0600
@@ -368,7 +368,7 @@
m_sslCheck->setInterval(60*1000);
connect(m_sslCheck, SIGNAL(timeout()), this, SLOT(slotSslTimeout()));
}
- m_socket->setAdvertisedSslVersion( KTcpSocket::TlsV1 );
+ m_socket->setAdvertisedSslVersion( KTcpSocket::SecureProtocols );
m_socket->ignoreSslErrors();
connect(m_socket, SIGNAL(encrypted()), SLOT(slotEncryptedDone()));
m_sslCheck->start();