Hello community, here is the log from the commit of package kimap for openSUSE:Factory checked in at 2019-08-16 15:37:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kimap (Old) and /work/SRC/openSUSE:Factory/.kimap.new.22127 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kimap" Fri Aug 16 15:37:49 2019 rev:48 rq:723656 version:19.08.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kimap/kimap.changes 2019-07-16 08:32:31.515406215 +0200 +++ /work/SRC/openSUSE:Factory/.kimap.new.22127/kimap.changes 2019-08-16 15:37:53.473834652 +0200 @@ -1,0 +2,32 @@ +Fri Aug 9 08:31:03 UTC 2019 - Christophe Giboudeaux <[email protected]> + +- Update to 19.08.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/announce-applications-19.08.0.php +- No code change since 19.07.90 + +------------------------------------------------------------------- +Tue Aug 06 16:50:49 UTC 2019 - [email protected] + +- Update to 19.07.90 + * New bugfix release + * For more details please see: + * https://www.kde.org/announcements/announce-applications-19.08-rc.php +- No code changes since 19.07.80 + +------------------------------------------------------------------- +Tue Jul 23 11:59:01 UTC 2019 - [email protected] + +- Update to 19.07.80 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/announce-applications-19.08-beta.php +- Changes since 19.04.3: + * Provide an option whether to use the system proxy settings + * When we use framework 5.59.0 we can use new logging file directory + * It was fixed in 5.13.0beta2 + * Use https for documentation links, and fix a few broken links + * metainfo.yaml: Fix cmakename, is own top-level entry + +------------------------------------------------------------------- Old: ---- kimap-19.04.3.tar.xz New: ---- applications.keyring kimap-19.08.0.tar.xz kimap-19.08.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kimap.spec ++++++ --- /var/tmp/diff_new_pack.PMooZm/_old 2019-08-16 15:37:54.829834258 +0200 +++ /var/tmp/diff_new_pack.PMooZm/_new 2019-08-16 15:37:54.857834250 +0200 @@ -22,13 +22,17 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: kimap -Version: 19.04.3 +Version: 19.08.0 Release: 0 Summary: KDE PIM Libraries: IMAP library License: LGPL-2.1-or-later Group: System/GUI/KDE -URL: http://www.kde.org -Source: kimap-%{version}.tar.xz +URL: https://www.kde.org +Source: https://download.kde.org/stable/applications/%{version}/src/%{name}-%{version}.tar.xz +%if %{with lang} +Source1: https://download.kde.org/stable/applications/%{version}/src/%{name}-%{version}.tar.xz.sig +Source2: applications.keyring +%endif BuildRequires: cyrus-sasl-devel BuildRequires: extra-cmake-modules >= 5.19.0 BuildRequires: kcoreaddons-devel >= %{kf5_version} ++++++ kimap-19.04.3.tar.xz -> kimap-19.08.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/CMakeLists.txt new/kimap-19.08.0/CMakeLists.txt --- old/kimap-19.04.3/CMakeLists.txt 2019-07-09 02:18:47.000000000 +0200 +++ new/kimap-19.08.0/CMakeLists.txt 2019-08-09 02:49:42.000000000 +0200 @@ -1,10 +1,10 @@ cmake_minimum_required(VERSION 3.5) -set(PIM_VERSION "5.11.3") +set(PIM_VERSION "5.12.0") project(KIMAP VERSION ${PIM_VERSION}) # ECM setup -set(KF5_MIN_VERSION "5.56.0") +set(KF5_MIN_VERSION "5.60.0") find_package(ECM ${KF5_MIN_VERSION} CONFIG REQUIRED) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH}) @@ -21,10 +21,10 @@ include(ECMQtDeclareLoggingCategory) -set(QT_REQUIRED_VERSION "5.10.0") +set(QT_REQUIRED_VERSION "5.11.0") set(KIMAP_LIB_VERSION ${PIM_VERSION}) -set(KMIME_LIBS_VERSION "5.11.3") +set(KMIME_LIBS_VERSION "5.12.0") ecm_setup_version(PROJECT VARIABLE_PREFIX KIMAP VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kimap_version.h" PACKAGE_VERSION_FILE "${CMAKE_CURRENT_BINARY_DIR}/KF5IMAPConfigVersion.cmake" @@ -44,12 +44,7 @@ set(CMAKECONFIG_INSTALL_DIR "${KDE_INSTALL_CMAKEPACKAGEDIR}/KF5IMAP") add_definitions(-DTRANSLATION_DOMAIN=\"libkimap5\") -# workaround for https://bugreports.qt.io/browse/QTBUG-74665 (bug in qt5.13 reevaluate it) -if (${Qt5Widgets_VERSION} STRGREATER "5.13") - MESSAGE(STATUS "Qt version: ${Qt5Widgets_VERSION} DISABLE compile without deprecated methods. bug QTBUG-74665") -else() - add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000) -endif() +add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000) configure_package_config_file( "${CMAKE_CURRENT_SOURCE_DIR}/KF5IMAPConfig.cmake.in" @@ -81,8 +76,8 @@ DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5} COMPONENT Devel ) -install( FILES kimap.categories DESTINATION ${KDE_INSTALL_CONFDIR} ) -install( FILES kimap.renamecategories DESTINATION ${KDE_INSTALL_CONFDIR} ) +install(FILES kimap.categories DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR}) +install(FILES kimap.renamecategories DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR}) feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) ki18n_install(po) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/README.md new/kimap-19.08.0/README.md --- old/kimap-19.04.3/README.md 2019-07-07 18:47:08.000000000 +0200 +++ new/kimap-19.08.0/README.md 2019-08-04 19:35:48.000000000 +0200 @@ -5,7 +5,7 @@ otherwise provides quite a low-level interface to the protocol. This library does not implement an IMAP client; it merely makes it easier to do so. -Users should be familiar with [RFC 3501](http://www.apps.ietf.org/rfc/rfc3501.html "IMAP 4rev1") -as well as [other related RFCs](http://www.iana.org/assignments/imap4-capabilities) +Users should be familiar with [RFC 3501](https://tools.ietf.org/html/rfc3501 "IMAP 4rev1") +as well as [other related RFCs](https://www.iana.org/assignments/imap4-capabilities) although the library hides some of the nastier details like the encoding and quoting of strings. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/metainfo.yaml new/kimap-19.08.0/metainfo.yaml --- old/kimap-19.04.3/metainfo.yaml 2019-07-07 18:47:08.000000000 +0200 +++ new/kimap-19.08.0/metainfo.yaml 2019-08-04 19:35:48.000000000 +0200 @@ -11,7 +11,7 @@ libraries: - qmake: KImap cmake: "KF5::Imap" - cmakename: KF5Imap +cmakename: KF5Imap public_lib: true group: kdepim diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/bs/libkimap5.po new/kimap-19.08.0/po/bs/libkimap5.po --- old/kimap-19.04.3/po/bs/libkimap5.po 2019-07-09 02:18:46.000000000 +0200 +++ new/kimap-19.08.0/po/bs/libkimap5.po 2019-08-09 02:49:40.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdepimlibs\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2012-10-05 17:12+0000\n" "Last-Translator: Launchpad Translations Administrators <Unknown>\n" "Language-Team: Bosnian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/ca/libkimap5.po new/kimap-19.08.0/po/ca/libkimap5.po --- old/kimap-19.04.3/po/ca/libkimap5.po 2019-07-09 02:18:46.000000000 +0200 +++ new/kimap-19.08.0/po/ca/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: libkimap5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2018-06-05 09:47+0100\n" "Last-Translator: Antoni Bella Pérez <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/ca@valencia/libkimap5.po new/kimap-19.08.0/po/ca@valencia/libkimap5.po --- old/kimap-19.04.3/po/ca@valencia/libkimap5.po 2019-07-09 02:18:46.000000000 +0200 +++ new/kimap-19.08.0/po/ca@valencia/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: libkimap5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2018-06-05 09:47+0100\n" "Last-Translator: Antoni Bella Pérez <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/cs/libkimap5.po new/kimap-19.08.0/po/cs/libkimap5.po --- old/kimap-19.04.3/po/cs/libkimap5.po 2019-07-09 02:18:46.000000000 +0200 +++ new/kimap-19.08.0/po/cs/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2016-03-23 15:45+0100\n" "Last-Translator: Vít Pelčák <[email protected]>\n" "Language-Team: Czech <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/da/libkimap5.po new/kimap-19.08.0/po/da/libkimap5.po --- old/kimap-19.04.3/po/da/libkimap5.po 2019-07-09 02:18:46.000000000 +0200 +++ new/kimap-19.08.0/po/da/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: libkimap\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2017-03-22 17:29+0100\n" "Last-Translator: Martin Schlander <[email protected]>\n" "Language-Team: Danish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/de/libkimap5.po new/kimap-19.08.0/po/de/libkimap5.po --- old/kimap-19.04.3/po/de/libkimap5.po 2019-07-09 02:18:46.000000000 +0200 +++ new/kimap-19.08.0/po/de/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: libkimap\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2018-06-07 07:55+0100\n" "Last-Translator: Burkhard Lück <[email protected]>\n" "Language-Team: German <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/el/libkimap5.po new/kimap-19.08.0/po/el/libkimap5.po --- old/kimap-19.04.3/po/el/libkimap5.po 2019-07-09 02:18:46.000000000 +0200 +++ new/kimap-19.08.0/po/el/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: libkimap\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2014-11-14 19:02+0200\n" "Last-Translator: Dimitris Kardarakos <[email protected]>\n" "Language-Team: Greek <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/en_GB/libkimap5.po new/kimap-19.08.0/po/en_GB/libkimap5.po --- old/kimap-19.04.3/po/en_GB/libkimap5.po 2019-07-09 02:18:46.000000000 +0200 +++ new/kimap-19.08.0/po/en_GB/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2018-06-30 13:33+0000\n" "Last-Translator: Steve Allewell <[email protected]>\n" "Language-Team: British English <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/eo/libkimap5.po new/kimap-19.08.0/po/eo/libkimap5.po --- old/kimap-19.04.3/po/eo/libkimap5.po 2019-07-09 02:18:46.000000000 +0200 +++ new/kimap-19.08.0/po/eo/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: libkimap\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2009-11-15 12:06+0100\n" "Last-Translator: Axel Rousseau <[email protected]>\n" "Language-Team: esperanto <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/es/libkimap5.po new/kimap-19.08.0/po/es/libkimap5.po --- old/kimap-19.04.3/po/es/libkimap5.po 2019-07-09 02:18:46.000000000 +0200 +++ new/kimap-19.08.0/po/es/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: libkimap\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2018-06-14 23:12+0100\n" "Last-Translator: Javier Vinal <[email protected]>\n" "Language-Team: Spanish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/et/libkimap5.po new/kimap-19.08.0/po/et/libkimap5.po --- old/kimap-19.04.3/po/et/libkimap5.po 2019-07-09 02:18:46.000000000 +0200 +++ new/kimap-19.08.0/po/et/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: libkimap\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2016-12-09 21:40+0200\n" "Last-Translator: Marek Laane <[email protected]>\n" "Language-Team: Estonian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/fi/libkimap5.po new/kimap-19.08.0/po/fi/libkimap5.po --- old/kimap-19.04.3/po/fi/libkimap5.po 2019-07-09 02:18:46.000000000 +0200 +++ new/kimap-19.08.0/po/fi/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: libkimap\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2018-08-15 13:59+0200\n" "Last-Translator: Tommi Nieminen <[email protected]>\n" "Language-Team: Finnish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/fr/libkimap5.po new/kimap-19.08.0/po/fr/libkimap5.po --- old/kimap-19.04.3/po/fr/libkimap5.po 2019-07-09 02:18:46.000000000 +0200 +++ new/kimap-19.08.0/po/fr/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: libkimap\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2018-06-08 16:32+0800\n" "Last-Translator: Simon Depiets <[email protected]>\n" "Language-Team: French <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/ga/libkimap5.po new/kimap-19.08.0/po/ga/libkimap5.po --- old/kimap-19.04.3/po/ga/libkimap5.po 2019-07-09 02:18:46.000000000 +0200 +++ new/kimap-19.08.0/po/ga/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: libkimap\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2009-12-24 06:59-0500\n" "Last-Translator: Kevin Scannell <[email protected]>\n" "Language-Team: Irish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/gl/libkimap5.po new/kimap-19.08.0/po/gl/libkimap5.po --- old/kimap-19.04.3/po/gl/libkimap5.po 2019-07-09 02:18:46.000000000 +0200 +++ new/kimap-19.08.0/po/gl/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: libkimap\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2018-10-21 18:37+0100\n" "Last-Translator: Adrián Chaves (Gallaecio) <[email protected]>\n" "Language-Team: Galician <[email protected]>\n" @@ -19,11 +19,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Environment: kde\n" -"X-Accelerator-Marker: &\n" -"X-Text-Markup: kde4\n" #: acljobbase.cpp:69 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/hu/libkimap5.po new/kimap-19.08.0/po/hu/libkimap5.po --- old/kimap-19.04.3/po/hu/libkimap5.po 2019-07-09 02:18:46.000000000 +0200 +++ new/kimap-19.08.0/po/hu/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: KDE 4.3\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2014-09-04 15:46+0200\n" "Last-Translator: Kristóf Kiszel <[email protected]>\n" "Language-Team: Hungarian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/ia/libkimap5.po new/kimap-19.08.0/po/ia/libkimap5.po --- old/kimap-19.04.3/po/ia/libkimap5.po 2019-07-09 02:18:46.000000000 +0200 +++ new/kimap-19.08.0/po/ia/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2013-12-16 13:14+0100\n" "Last-Translator: G.Sora <[email protected]>\n" "Language-Team: Interlingua <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/it/libkimap5.po new/kimap-19.08.0/po/it/libkimap5.po --- old/kimap-19.04.3/po/it/libkimap5.po 2019-07-09 02:18:46.000000000 +0200 +++ new/kimap-19.08.0/po/it/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: libkimap\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2018-06-24 15:38+0100\n" "Last-Translator: Luigi Toscano <[email protected]>\n" "Language-Team: Italian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/ja/libkimap5.po new/kimap-19.08.0/po/ja/libkimap5.po --- old/kimap-19.04.3/po/ja/libkimap5.po 2019-07-09 02:18:46.000000000 +0200 +++ new/kimap-19.08.0/po/ja/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: libkimap\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2010-09-25 20:01-0700\n" "Last-Translator: Fumiaki Okushi <[email protected]>\n" "Language-Team: Japanese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/kk/libkimap5.po new/kimap-19.08.0/po/kk/libkimap5.po --- old/kimap-19.04.3/po/kk/libkimap5.po 2019-07-09 02:18:46.000000000 +0200 +++ new/kimap-19.08.0/po/kk/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2011-02-18 06:48+0600\n" "Last-Translator: Sairan Kikkarin <[email protected]>\n" "Language-Team: Kazakh <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/km/libkimap5.po new/kimap-19.08.0/po/km/libkimap5.po --- old/kimap-19.04.3/po/km/libkimap5.po 2019-07-09 02:18:46.000000000 +0200 +++ new/kimap-19.08.0/po/km/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: libkimap\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2010-06-24 15:47+0700\n" "Last-Translator: Khoem Sokhem <[email protected]>\n" "Language-Team: Khmer <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/ko/libkimap5.po new/kimap-19.08.0/po/ko/libkimap5.po --- old/kimap-19.04.3/po/ko/libkimap5.po 2019-07-09 02:18:46.000000000 +0200 +++ new/kimap-19.08.0/po/ko/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2018-08-15 12:30+0100\n" "Last-Translator: Shinjo Park <[email protected]>\n" "Language-Team: Korean <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/lt/libkimap5.po new/kimap-19.08.0/po/lt/libkimap5.po --- old/kimap-19.04.3/po/lt/libkimap5.po 2019-07-09 02:18:46.000000000 +0200 +++ new/kimap-19.08.0/po/lt/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: libkimap\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2015-08-30 15:56+0200\n" "Last-Translator: Liudas Ališauskas <[email protected]>\n" "Language-Team: Lithuanian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/lv/libkimap5.po new/kimap-19.08.0/po/lv/libkimap5.po --- old/kimap-19.04.3/po/lv/libkimap5.po 2019-07-09 02:18:47.000000000 +0200 +++ new/kimap-19.08.0/po/lv/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2010-01-01 17:01+0200\n" "Last-Translator: Viesturs Zarins <[email protected]>\n" "Language-Team: Latvian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/mr/libkimap5.po new/kimap-19.08.0/po/mr/libkimap5.po --- old/kimap-19.04.3/po/mr/libkimap5.po 2019-07-09 02:18:47.000000000 +0200 +++ new/kimap-19.08.0/po/mr/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2013-03-13 15:14+0530\n" "Last-Translator: Chetan Khona <[email protected]>\n" "Language-Team: Marathi <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/nb/libkimap5.po new/kimap-19.08.0/po/nb/libkimap5.po --- old/kimap-19.04.3/po/nb/libkimap5.po 2019-07-09 02:18:47.000000000 +0200 +++ new/kimap-19.08.0/po/nb/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2014-09-23 22:05+0200\n" "Last-Translator: Bjørn Steensrud <[email protected]>\n" "Language-Team: Norwegian Bokmål <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/nds/libkimap5.po new/kimap-19.08.0/po/nds/libkimap5.po --- old/kimap-19.04.3/po/nds/libkimap5.po 2019-07-09 02:18:47.000000000 +0200 +++ new/kimap-19.08.0/po/nds/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: libkimap\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2014-08-14 00:19+0200\n" "Last-Translator: Sönke Dibbern <[email protected]>\n" "Language-Team: Low Saxon <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/nl/libkimap5.po new/kimap-19.08.0/po/nl/libkimap5.po --- old/kimap-19.04.3/po/nl/libkimap5.po 2019-07-09 02:18:47.000000000 +0200 +++ new/kimap-19.08.0/po/nl/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: libkimap\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2018-06-07 17:54+0100\n" "Last-Translator: Freek de Kruijf <[email protected]>\n" "Language-Team: Dutch <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/nn/libkimap5.po new/kimap-19.08.0/po/nn/libkimap5.po --- old/kimap-19.04.3/po/nn/libkimap5.po 2019-07-09 02:18:47.000000000 +0200 +++ new/kimap-19.08.0/po/nn/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: libkimap\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2010-04-20 22:06+0200\n" "Last-Translator: Eirik U. Birkeland <[email protected]>\n" "Language-Team: Norwegian Nynorsk <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/pa/libkimap5.po new/kimap-19.08.0/po/pa/libkimap5.po --- old/kimap-19.04.3/po/pa/libkimap5.po 2019-07-09 02:18:47.000000000 +0200 +++ new/kimap-19.08.0/po/pa/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2010-01-16 08:29+0530\n" "Last-Translator: A S Alam <[email protected]>\n" "Language-Team: ਪੰਜਾਬੀ <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/pl/libkimap5.po new/kimap-19.08.0/po/pl/libkimap5.po --- old/kimap-19.04.3/po/pl/libkimap5.po 2019-07-09 02:18:47.000000000 +0200 +++ new/kimap-19.08.0/po/pl/libkimap5.po 2019-08-09 02:49:41.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2019-01-13 10:04+0100\n" "Last-Translator: Łukasz Wojniłowicz <[email protected]>\n" "Language-Team: Polish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/pt/libkimap5.po new/kimap-19.08.0/po/pt/libkimap5.po --- old/kimap-19.04.3/po/pt/libkimap5.po 2019-07-09 02:18:47.000000000 +0200 +++ new/kimap-19.08.0/po/pt/libkimap5.po 2019-08-09 02:49:42.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: libkimap\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2018-06-04 11:20+0100\n" "Last-Translator: José Nuno Coelho Pires <[email protected]>\n" "Language-Team: Portuguese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/pt_BR/libkimap5.po new/kimap-19.08.0/po/pt_BR/libkimap5.po --- old/kimap-19.04.3/po/pt_BR/libkimap5.po 2019-07-09 02:18:47.000000000 +0200 +++ new/kimap-19.08.0/po/pt_BR/libkimap5.po 2019-08-09 02:49:42.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: libkimap5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2018-08-04 23:28-0300\n" "Last-Translator: André Marcelo Alvarenga <[email protected]>\n" "Language-Team: Brazilian Portuguese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/ro/libkimap5.po new/kimap-19.08.0/po/ro/libkimap5.po --- old/kimap-19.04.3/po/ro/libkimap5.po 2019-07-09 02:18:47.000000000 +0200 +++ new/kimap-19.08.0/po/ro/libkimap5.po 2019-08-09 02:49:42.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2010-11-28 17:14+0200\n" "Last-Translator: Cristian Oneț <[email protected]>\n" "Language-Team: Romanian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/ru/libkimap5.po new/kimap-19.08.0/po/ru/libkimap5.po --- old/kimap-19.04.3/po/ru/libkimap5.po 2019-07-09 02:18:47.000000000 +0200 +++ new/kimap-19.08.0/po/ru/libkimap5.po 2019-08-09 02:49:42.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2018-08-14 10:00+0300\n" "Last-Translator: Александр Яворский <[email protected]>\n" "Language-Team: Russian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/sk/libkimap5.po new/kimap-19.08.0/po/sk/libkimap5.po --- old/kimap-19.04.3/po/sk/libkimap5.po 2019-07-09 02:18:47.000000000 +0200 +++ new/kimap-19.08.0/po/sk/libkimap5.po 2019-08-09 02:49:42.000000000 +0200 @@ -1,18 +1,19 @@ # translation of libkimap5.po to Slovak # Roman Paholík <[email protected]>, 2014, 2016. +# Matej Mrenica <[email protected]>, 2019. msgid "" msgstr "" "Project-Id-Version: libkimap5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2016-11-04 21:34+0100\n" -"Last-Translator: Roman Paholik <[email protected]>\n" -"Language-Team: Slovak <[email protected]>\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" +"PO-Revision-Date: 2019-08-04 12:47+0200\n" +"Last-Translator: Matej Mrenica <[email protected]>\n" +"Language-Team: Slovak <[email protected]>\n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 19.07.90\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: acljobbase.cpp:69 @@ -155,6 +156,7 @@ #, kde-format msgid "STARTTLS is not supported by the server, try using SSL/TLS instead." msgstr "" +"STARTTLS nie je podporovaný serverom, skúste namiesto toho použiť SSL/TLS." #: loginjob.cpp:374 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/sl/libkimap5.po new/kimap-19.08.0/po/sl/libkimap5.po --- old/kimap-19.04.3/po/sl/libkimap5.po 2019-07-09 02:18:47.000000000 +0200 +++ new/kimap-19.08.0/po/sl/libkimap5.po 2019-08-09 02:49:42.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2016-10-31 20:46+0100\n" "Last-Translator: Andrej Mernik <[email protected]>\n" "Language-Team: Slovenian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/sv/libkimap5.po new/kimap-19.08.0/po/sv/libkimap5.po --- old/kimap-19.04.3/po/sv/libkimap5.po 2019-07-09 02:18:47.000000000 +0200 +++ new/kimap-19.08.0/po/sv/libkimap5.po 2019-08-09 02:49:42.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: libkimap\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2018-06-17 07:36+0100\n" "Last-Translator: Stefan Asserhäll <[email protected]>\n" "Language-Team: Swedish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/tr/libkimap5.po new/kimap-19.08.0/po/tr/libkimap5.po --- old/kimap-19.04.3/po/tr/libkimap5.po 2019-07-09 02:18:47.000000000 +0200 +++ new/kimap-19.08.0/po/tr/libkimap5.po 2019-08-09 02:49:42.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: libkimap\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2017-06-05 11:58+0000\n" "Last-Translator: Kaan <[email protected]>\n" "Language-Team: Turkish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/ug/libkimap5.po new/kimap-19.08.0/po/ug/libkimap5.po --- old/kimap-19.04.3/po/ug/libkimap5.po 2019-07-09 02:18:47.000000000 +0200 +++ new/kimap-19.08.0/po/ug/libkimap5.po 2019-08-09 02:49:42.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: libkimap\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2013-09-08 07:05+0900\n" "Last-Translator: Gheyret Kenji <[email protected]>\n" "Language-Team: Uyghur Computer Science Association <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/uk/libkimap5.po new/kimap-19.08.0/po/uk/libkimap5.po --- old/kimap-19.04.3/po/uk/libkimap5.po 2019-07-09 02:18:47.000000000 +0200 +++ new/kimap-19.08.0/po/uk/libkimap5.po 2019-08-09 02:49:42.000000000 +0200 @@ -1,5 +1,5 @@ # Translation of libkimap5.po to Ukrainian -# Copyright (C) 2014-2018 This_file_is_part_of_KDE +# Copyright (C) 2018 This_file_is_part_of_KDE # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: libkimap5\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2018-06-05 08:29+0200\n" "Last-Translator: Yuri Chornoivan <[email protected]>\n" "Language-Team: Ukrainian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/zh_CN/libkimap5.po new/kimap-19.08.0/po/zh_CN/libkimap5.po --- old/kimap-19.04.3/po/zh_CN/libkimap5.po 2019-07-09 02:18:47.000000000 +0200 +++ new/kimap-19.08.0/po/zh_CN/libkimap5.po 2019-08-09 02:49:42.000000000 +0200 @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2019-06-02 13:16\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" +"PO-Revision-Date: 2019-07-18 15:10\n" "Last-Translator: Guo Yunhe (guoyunhe)\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/po/zh_TW/libkimap5.po new/kimap-19.08.0/po/zh_TW/libkimap5.po --- old/kimap-19.04.3/po/zh_TW/libkimap5.po 2019-07-09 02:18:47.000000000 +0200 +++ new/kimap-19.08.0/po/zh_TW/libkimap5.po 2019-08-09 02:49:42.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: libkimap\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:16+0200\n" "PO-Revision-Date: 2019-03-22 00:40+0800\n" "Last-Translator: pan93412 <[email protected]>\n" "Language-Team: Chinese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/src/acl.h new/kimap-19.08.0/src/acl.h --- old/kimap-19.04.3/src/acl.h 2019-07-07 18:47:08.000000000 +0200 +++ new/kimap-19.08.0/src/acl.h 2019-08-04 19:35:48.000000000 +0200 @@ -77,7 +77,7 @@ Expunge = 0x001000, /** Write shared annotations * - * See <a href="http://www.apps.ietf.org/rfc/rfc5257.html" title="IMAP ANNOTATE extension">RFC + * See <a href="https://tools.ietf.org/html/rfc5257" title="IMAP ANNOTATE extension">RFC * 5257</a>. Only supported by servers that implement the ANNOTATE extension. */ WriteShared = 0x002000, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/src/acljobbase.h new/kimap-19.08.0/src/acljobbase.h --- old/kimap-19.04.3/src/acljobbase.h 2019-07-07 18:47:08.000000000 +0200 +++ new/kimap-19.08.0/src/acljobbase.h 2019-08-04 19:35:48.000000000 +0200 @@ -36,7 +36,7 @@ * Base class for jobs that operate on mailbox ACLs * * Provides support for the IMAP ACL extension, as defined by - * <a href="http://www.apps.ietf.org/rfc/rfc4314.html" title="IMAP ACL extension">RFC 4314</a>. + * <a href="https://tools.ietf.org/html/rfc4314" title="IMAP ACL extension">RFC 4314</a>. * * This class cannot be used directly, you must subclass it and reimplement * at least the doStart() method. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/src/appendjob.h new/kimap-19.08.0/src/appendjob.h --- old/kimap-19.04.3/src/appendjob.h 2019-07-07 18:47:08.000000000 +0200 +++ new/kimap-19.08.0/src/appendjob.h 2019-08-04 19:35:48.000000000 +0200 @@ -81,7 +81,7 @@ * Set the internal date that should be applied to the appended message. * * This is the date/time the IMAP server should set internally for the appended message. - * See http://tools.ietf.org/html/rfc3501#section-6.3.11 + * See https://tools.ietf.org/html/rfc3501#section-6.3.11 * * If this is not set, the server will use the current date/time. * diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/src/deleteacljob.h new/kimap-19.08.0/src/deleteacljob.h --- old/kimap-19.04.3/src/deleteacljob.h 2019-07-07 18:47:08.000000000 +0200 +++ new/kimap-19.08.0/src/deleteacljob.h 2019-08-04 19:35:48.000000000 +0200 @@ -43,7 +43,7 @@ * * This job requires that the server supports the ACL * capability, defined in - * <a href="http://www.apps.ietf.org/rfc/rfc4314.html">RFC 4314</a>. + * <a href="https://tools.ietf.org/html/rfc4314">RFC 4314</a>. */ class KIMAP_EXPORT DeleteAclJob : public AclJobBase { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/src/getacljob.h new/kimap-19.08.0/src/getacljob.h --- old/kimap-19.04.3/src/getacljob.h 2019-07-07 18:47:08.000000000 +0200 +++ new/kimap-19.08.0/src/getacljob.h 2019-08-04 19:35:48.000000000 +0200 @@ -43,7 +43,7 @@ * * This job requires that the server supports the ACL * capability, defined in - * <a href="http://www.apps.ietf.org/rfc/rfc4314.html">RFC 4314</a>. + * <a href="https://tools.ietf.org/html/rfc4314">RFC 4314</a>. * * The meaning of identifiers depends on the server implementation, * with the following restrictions: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/src/getmetadatajob.h new/kimap-19.08.0/src/getmetadatajob.h --- old/kimap-19.04.3/src/getmetadatajob.h 2019-07-07 18:47:08.000000000 +0200 +++ new/kimap-19.08.0/src/getmetadatajob.h 2019-08-04 19:35:48.000000000 +0200 @@ -36,10 +36,10 @@ * * Provides support for the IMAP METADATA extension; both the * final RFC version - * (<a href="http://tools.ietf.org/html/rfc5464">RFC 5464</a>) + * (<a href="https://tools.ietf.org/html/rfc5464">RFC 5464</a>) * and the older, incompatible draft version (known as ANNOTATEMORE) * (<a - * href="http://tools.ietf.org/html/draft-daboo-imap-annotatemore-07" + * href="https://tools.ietf.org/html/draft-daboo-imap-annotatemore-07" * >draft-daboo-imap-annotatemore-07</a>). See setServerCompatibility(). * * This job can only be run when the session is in the diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/src/getquotajob.h new/kimap-19.08.0/src/getquotajob.h --- old/kimap-19.04.3/src/getquotajob.h 2019-07-07 18:47:08.000000000 +0200 +++ new/kimap-19.08.0/src/getquotajob.h 2019-08-04 19:35:48.000000000 +0200 @@ -46,7 +46,7 @@ * * This job requires that the server supports the QUOTA * capability, defined in - * <a href="http://www.apps.ietf.org/rfc/rfc2087.html">RFC 2087</a>. + * <a href="https://tools.ietf.org/html/rfc2087">RFC 2087</a>. */ class KIMAP_EXPORT GetQuotaJob : public QuotaJobBase { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/src/getquotarootjob.h new/kimap-19.08.0/src/getquotarootjob.h --- old/kimap-19.04.3/src/getquotarootjob.h 2019-07-07 18:47:08.000000000 +0200 +++ new/kimap-19.08.0/src/getquotarootjob.h 2019-08-04 19:35:48.000000000 +0200 @@ -46,7 +46,7 @@ * * This job requires that the server supports the QUOTA * capability, defined in - * <a href="http://www.apps.ietf.org/rfc/rfc2087.html">RFC 2087</a>. + * <a href="https://tools.ietf.org/html/rfc2087">RFC 2087</a>. */ class KIMAP_EXPORT GetQuotaRootJob : public QuotaJobBase { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/src/idlejob.h new/kimap-19.08.0/src/idlejob.h --- old/kimap-19.04.3/src/idlejob.h 2019-07-07 18:47:08.000000000 +0200 +++ new/kimap-19.08.0/src/idlejob.h 2019-08-04 19:35:48.000000000 +0200 @@ -57,7 +57,7 @@ * * This job requires that the server supports the IDLE * capability, defined in - * <a href="http://www.apps.ietf.org/rfc/rfc2177.html">RFC 2177</a>. + * <a href="https://tools.ietf.org/html/rfc2177">RFC 2177</a>. */ class KIMAP_EXPORT IdleJob : public Job { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/src/listrightsjob.h new/kimap-19.08.0/src/listrightsjob.h --- old/kimap-19.04.3/src/listrightsjob.h 2019-07-07 18:47:08.000000000 +0200 +++ new/kimap-19.08.0/src/listrightsjob.h 2019-08-04 19:35:48.000000000 +0200 @@ -44,7 +44,7 @@ * * This job requires that the server supports the ACL * capability, defined in - * <a href="http://www.apps.ietf.org/rfc/rfc4314.html">RFC 4314</a>. + * <a href="https://tools.ietf.org/html/rfc4314">RFC 4314</a>. */ class KIMAP_EXPORT ListRightsJob : public AclJobBase { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/src/metadatajobbase.h new/kimap-19.08.0/src/metadatajobbase.h --- old/kimap-19.04.3/src/metadatajobbase.h 2019-07-07 18:47:08.000000000 +0200 +++ new/kimap-19.08.0/src/metadatajobbase.h 2019-08-04 19:35:48.000000000 +0200 @@ -36,10 +36,10 @@ * * Provides support for the IMAP METADATA extension; both the * final RFC version - * (<a href="http://tools.ietf.org/html/rfc5464">RFC 5464</a>) + * (<a href="https://tools.ietf.org/html/rfc5464">RFC 5464</a>) * and the older, incompatible draft version (known as ANNOTATEMORE) * (<a - * href="http://tools.ietf.org/html/draft-daboo-imap-annotatemore-07" + * href="https://tools.ietf.org/html/draft-daboo-imap-annotatemore-07" * >draft-daboo-imap-annotatemore-07</a>). * * This class cannot be used directly, you must subclass it and reimplement diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/src/myrightsjob.h new/kimap-19.08.0/src/myrightsjob.h --- old/kimap-19.04.3/src/myrightsjob.h 2019-07-07 18:47:08.000000000 +0200 +++ new/kimap-19.08.0/src/myrightsjob.h 2019-08-04 19:35:48.000000000 +0200 @@ -52,7 +52,7 @@ * * This job requires that the server supports the ACL * capability, defined in - * <a href="http://www.apps.ietf.org/rfc/rfc4314.html">RFC 4314</a>. + * <a href="https://tools.ietf.org/html/rfc4314">RFC 4314</a>. */ class KIMAP_EXPORT MyRightsJob : public AclJobBase { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/src/quotajobbase.h new/kimap-19.08.0/src/quotajobbase.h --- old/kimap-19.04.3/src/quotajobbase.h 2019-07-07 18:47:08.000000000 +0200 +++ new/kimap-19.08.0/src/quotajobbase.h 2019-08-04 19:35:48.000000000 +0200 @@ -35,7 +35,7 @@ * Base class for jobs that operate on mailbox quotas * * Provides support for the IMAP QUOTA extension, as defined by - * <a href="http://www.apps.ietf.org/rfc/rfc2087.html" title="IMAP QUOTA extension">RFC 2087</a>. + * <a href="https://tools.ietf.org/html/rfc2087" title="IMAP QUOTA extension">RFC 2087</a>. * * This class cannot be used directly, you must subclass it and reimplement * at least the doStart() method. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/src/session.cpp new/kimap-19.08.0/src/session.cpp --- old/kimap-19.04.3/src/session.cpp 2019-07-07 18:47:08.000000000 +0200 +++ new/kimap-19.08.0/src/session.cpp 2019-08-04 19:35:48.000000000 +0200 @@ -98,6 +98,11 @@ return d->thread->port(); } +void Session::setUseNetworkProxy(bool useProxy) +{ + d->thread->setUseNetworkProxy(useProxy); +} + Session::State Session::state() const { return d->state; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/src/session.h new/kimap-19.08.0/src/session.h --- old/kimap-19.04.3/src/session.h 2019-07-07 18:47:08.000000000 +0200 +++ new/kimap-19.08.0/src/session.h 2019-08-04 19:35:48.000000000 +0200 @@ -91,6 +91,18 @@ */ Q_REQUIRED_RESULT QString selectedMailBox() const; + /** + * Sets whether the IMAP network connection should use the system proxy settings. + * + * @param useProxy @c true if the proxy is to be used + * The default is to not use the proxy. + * @since 5.11.41 + * + * @note If the session is currently connected to the IMAP server, calling this + * function will disconnect and reconnect to it with the changed proxy setting. + */ + void setUseNetworkProxy(bool useProxy); + Q_REQUIRED_RESULT int jobQueueSize() const; void close(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/src/sessionthread.cpp new/kimap-19.08.0/src/sessionthread.cpp --- old/kimap-19.04.3/src/sessionthread.cpp 2019-07-07 18:47:08.000000000 +0200 +++ new/kimap-19.08.0/src/sessionthread.cpp 2019-08-04 19:35:48.000000000 +0200 @@ -21,6 +21,7 @@ #include <QDebug> #include <QThread> +#include <QNetworkProxy> #include "kimap_debug.h" @@ -37,7 +38,8 @@ SessionThread::SessionThread(const QString &hostName, quint16 port) : QObject(), m_hostName(hostName), m_port(port), m_socket(nullptr), m_stream(nullptr), m_mutex(), - m_encryptedMode(false) + m_encryptedMode(false), + m_useProxy(false) { // Just like the Qt docs now recommend, for event-driven threads: // don't derive from QThread, create one directly and move the object to it. @@ -59,6 +61,12 @@ delete thread(); } +// Called in primary thread, passes setting to secondary thread +void SessionThread::setUseNetworkProxy(bool useProxy) +{ + QMetaObject::invokeMethod(this, [this, useProxy]() { setUseProxyInternal(useProxy); }, Qt::QueuedConnection); +} + // Called in primary thread void SessionThread::sendData(const QByteArray &payload) { @@ -162,6 +170,17 @@ } if (m_socket->state() != SessionSocket::ConnectedState && m_socket->state() != SessionSocket::ConnectingState) { + + QNetworkProxy proxy; + if (!m_useProxy) { + qCDebug(KIMAP_LOG) << "Connecting to IMAP server with no proxy"; + proxy.setType(QNetworkProxy::NoProxy); + } else { + qCDebug(KIMAP_LOG) << "Connecting to IMAP server using default system proxy"; + proxy.setType(QNetworkProxy::DefaultProxy); + } + m_socket->setProxy(proxy); + if (m_encryptedMode) { qCDebug(KIMAP_LOG) << "connectToHostEncrypted" << m_hostName << m_port; m_socket->connectToHostEncrypted(m_hostName, m_port); @@ -210,6 +229,18 @@ thread()->quit(); } +// Called in secondary thread +void SessionThread::setUseProxyInternal(bool useProxy) +{ + m_useProxy = useProxy; + if (m_socket != nullptr) { + if (m_socket->state() != SessionSocket::UnconnectedState) { + m_socket->disconnectFromHost(); + QMetaObject::invokeMethod(this, &SessionThread::reconnect, Qt::QueuedConnection); + } + } +} + // Called in primary thread void SessionThread::startSsl(KTcpSocket::SslVersion version) { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/src/sessionthread_p.h new/kimap-19.08.0/src/sessionthread_p.h --- old/kimap-19.04.3/src/sessionthread_p.h 2019-07-07 18:47:08.000000000 +0200 +++ new/kimap-19.08.0/src/sessionthread_p.h 2019-08-04 19:35:48.000000000 +0200 @@ -50,6 +50,8 @@ return m_port; } + void setUseNetworkProxy(bool useProxy); + void sendData(const QByteArray &payload); public Q_SLOTS: @@ -78,6 +80,7 @@ void slotSocketDisconnected(); void doStartSsl(KTcpSocket::SslVersion); void doSslErrorHandlerResponse(bool result); + void setUseProxyInternal(bool useProxy); private: QString m_hostName; @@ -92,6 +95,7 @@ QMutex m_mutex; bool m_encryptedMode = false; + bool m_useProxy = false; }; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/src/setacljob.h new/kimap-19.08.0/src/setacljob.h --- old/kimap-19.04.3/src/setacljob.h 2019-07-07 18:47:08.000000000 +0200 +++ new/kimap-19.08.0/src/setacljob.h 2019-08-04 19:35:48.000000000 +0200 @@ -39,7 +39,7 @@ * * This job requires that the server supports the ACL * capability, defined in - * <a href="http://www.apps.ietf.org/rfc/rfc4314.html">RFC 4314</a>. + * <a href="https://tools.ietf.org/html/rfc4314">RFC 4314</a>. */ class KIMAP_EXPORT SetAclJob : public AclJobBase { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/src/setmetadatajob.h new/kimap-19.08.0/src/setmetadatajob.h --- old/kimap-19.04.3/src/setmetadatajob.h 2019-07-07 18:47:08.000000000 +0200 +++ new/kimap-19.08.0/src/setmetadatajob.h 2019-08-04 19:35:48.000000000 +0200 @@ -36,10 +36,10 @@ * * Provides support for the IMAP METADATA extension; both the * final RFC version - * (<a href="http://tools.ietf.org/html/rfc5464">RFC 5464</a>) + * (<a href="https://tools.ietf.org/html/rfc5464">RFC 5464</a>) * and the older, incompatible draft version (known as ANNOTATEMORE) * (<a - * href="http://tools.ietf.org/html/draft-daboo-imap-annotatemore-07" + * href="https://tools.ietf.org/html/draft-daboo-imap-annotatemore-07" * >draft-daboo-imap-annotatemore-07</a>). See setServerCompatibility(). * * Note that in Annotatemore mode, this job can only operate on diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimap-19.04.3/src/setquotajob.h new/kimap-19.08.0/src/setquotajob.h --- old/kimap-19.04.3/src/setquotajob.h 2019-07-07 18:47:08.000000000 +0200 +++ new/kimap-19.08.0/src/setquotajob.h 2019-08-04 19:35:48.000000000 +0200 @@ -46,7 +46,7 @@ * * This job requires that the server supports the QUOTA * capability, defined in - * <a href="http://www.apps.ietf.org/rfc/rfc2087.html">RFC 2087</a>. + * <a href="https://tools.ietf.org/html/rfc2087">RFC 2087</a>. */ class KIMAP_EXPORT SetQuotaJob : public QuotaJobBase {
