Hello community,

here is the log from the commit of package ksmtp for openSUSE:Factory checked 
in at 2018-02-12 10:03:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ksmtp (Old)
 and      /work/SRC/openSUSE:Factory/.ksmtp.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ksmtp"

Mon Feb 12 10:03:52 2018 rev:5 rq:575094 version:17.12.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/ksmtp/ksmtp.changes      2018-01-17 
21:52:18.276079850 +0100
+++ /work/SRC/openSUSE:Factory/.ksmtp.new/ksmtp.changes 2018-02-12 
10:03:53.305997215 +0100
@@ -1,0 +2,11 @@
+Wed Feb 07 08:48:43 CET 2018 - lbeltr...@kde.org
+
+- Update to 17.12.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.12.2.php
+- Changes since 17.12.1:
+  * Fix autotests
+  * SMTP: fix truncated attachment if it contains a line with a single dot
+
+-------------------------------------------------------------------

Old:
----
  ksmtp-17.12.1.tar.xz

New:
----
  ksmtp-17.12.2.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ksmtp.spec ++++++
--- /var/tmp/diff_new_pack.0T5ZqM/_old  2018-02-12 10:03:53.893976023 +0100
+++ /var/tmp/diff_new_pack.0T5ZqM/_new  2018-02-12 10:03:53.893976023 +0100
@@ -19,7 +19,7 @@
 %bcond_without lang
 
 Name:           ksmtp
-Version:        17.12.1
+Version:        17.12.2
 Release:        0
 Summary:        Job-based library to send email through an SMTP server
 License:        LGPL-2.1+

++++++ ksmtp-17.12.1.tar.xz -> ksmtp-17.12.2.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/CMakeLists.txt 
new/ksmtp-17.12.2/CMakeLists.txt
--- old/ksmtp-17.12.1/CMakeLists.txt    2018-01-09 02:20:54.000000000 +0100
+++ new/ksmtp-17.12.2/CMakeLists.txt    2018-02-06 01:44:46.000000000 +0100
@@ -1,5 +1,5 @@
 cmake_minimum_required(VERSION 3.0)
-set(PIM_VERSION "5.7.1")
+set(PIM_VERSION "5.7.2")
 
 project(KSMTP VERSION ${PIM_VERSION})
 option(RUN_UNINSTALL "test run uninstalled apps (experimental)" FALSE)
@@ -24,8 +24,8 @@
 
 
 set(KSMTP_LIB_VERSION ${PIM_VERSION})
-set(QT5_REQUIRED_VERSION "5.7.1")
-set(KMIME_LIB_VERSION "5.7.1")
+set(QT5_REQUIRED_VERSION "5.7.2")
+set(KMIME_LIB_VERSION "5.7.2")
 ecm_setup_version(PROJECT VARIABLE_PREFIX KSMTP
     VERSION_HEADER ${KSMTP_BINARY_DIR}/ksmtp_version.h
     PACKAGE_VERSION_FILE ${KSMTP_BINARY_DIR}/KPimSMTPConfigVersion.cmake
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/autotests/smtptest.cpp 
new/ksmtp-17.12.2/autotests/smtptest.cpp
--- old/ksmtp-17.12.1/autotests/smtptest.cpp    2017-12-31 12:38:47.000000000 
+0100
+++ new/ksmtp-17.12.2/autotests/smtptest.cpp    2018-02-05 10:14:22.000000000 
+0100
@@ -36,7 +36,7 @@
              << "C: EHLO 127.0.0.1"
              << "S: 250 Localhost ready to roll"
              << FakeServer::bye();
-    QTest::newRow("EHLO OK") << scenario << QString();
+    QTest::newRow("EHLO OK") << scenario << QStringLiteral("127.0.0.1");
 
     scenario.clear();
     scenario << FakeServer::greeting()
@@ -45,7 +45,7 @@
              << "C: HELO 127.0.0.1"
              << "S: 250 Localhost ready to roll"
              << FakeServer::bye();
-    QTest::newRow("EHLO unknown") << scenario << QString();
+    QTest::newRow("EHLO unknown") << scenario << QStringLiteral("127.0.0.1");
 
     scenario.clear();
     scenario << FakeServer::greeting()
@@ -54,7 +54,7 @@
              << "C: HELO 127.0.0.1"
              << "S: 250 Localhost ready to roll"
              << FakeServer::bye();
-    QTest::newRow("EHLO not implemented") << scenario << QString();
+    QTest::newRow("EHLO not implemented") << scenario << 
QStringLiteral("127.0.0.1");
 
     scenario.clear();
     scenario << FakeServer::greeting()
@@ -63,7 +63,7 @@
              << "C: HELO 127.0.0.1"
              << "S: 500 Command was not recognized"
              << FakeServer::bye();
-    QTest::newRow("ERROR") << scenario << QString();
+    QTest::newRow("ERROR") << scenario << QStringLiteral("127.0.0.1");
 
     scenario.clear();
     scenario << FakeServer::greeting()
@@ -167,6 +167,7 @@
     fakeServer.setScenario(scenario);
     fakeServer.startAndWait();
     KSmtp::Session session(QStringLiteral("127.0.0.1"), 5989);
+    session.setCustomHostname(QStringLiteral("127.0.0.1"));
     session.openAndWait();
 
     KSmtp::LoginJob *login = new KSmtp::LoginJob(&session);
@@ -230,6 +231,7 @@
     fakeServer.setScenario(scenario);
     fakeServer.startAndWait();
     KSmtp::Session session(QStringLiteral("127.0.0.1"), 5989);
+    session.setCustomHostname(QStringLiteral("127.0.0.1"));
     session.openAndWait();
 
     KSmtp::SendJob *send = new KSmtp::SendJob(&session);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/ast/libksmtp5.po 
new/ksmtp-17.12.2/po/ast/libksmtp5.po
--- old/ksmtp-17.12.1/po/ast/libksmtp5.po       2018-01-09 02:20:53.000000000 
+0100
+++ new/ksmtp-17.12.2/po/ast/libksmtp5.po       2018-02-06 01:44:46.000000000 
+0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2015-03-26 20:02+0100\n"
 "Last-Translator: enolp <en...@softastur.org>\n"
 "Language-Team: Asturian <kde-i18n-...@kde.org>\n"
@@ -54,14 +54,14 @@
 msgid "SendJob"
 msgstr ""
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
 "missing or invalid"
 msgstr ""
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/bs/libksmtp5.po 
new/ksmtp-17.12.2/po/bs/libksmtp5.po
--- old/ksmtp-17.12.1/po/bs/libksmtp5.po        2018-01-09 02:20:53.000000000 
+0100
+++ new/ksmtp-17.12.2/po/bs/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kde 49i410\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2015-02-16 11:55+0000\n"
 "Last-Translator: Samir Ribić <Unknown>\n"
 "Language-Team: Bosnian\n"
@@ -59,7 +59,7 @@
 msgid "SendJob"
 msgstr "SendJob"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
@@ -68,7 +68,7 @@
 "Ne mogu poslati poruku jer ili primaoc ili pošiljaoc ne postoje ili su "
 "nevažeći"
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/ca/libksmtp5.po 
new/ksmtp-17.12.2/po/ca/libksmtp5.po
--- old/ksmtp-17.12.1/po/ca/libksmtp5.po        2018-01-09 02:20:53.000000000 
+0100
+++ new/ksmtp-17.12.2/po/ca/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: libksmtp5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2017-07-25 07:10+0100\n"
 "Last-Translator: Antoni Bella Pérez <antonibel...@yahoo.com>\n"
 "Language-Team: Catalan <kde-i18n...@kde.org>\n"
@@ -61,7 +61,7 @@
 msgid "SendJob"
 msgstr "Envia la tasca"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
@@ -70,7 +70,7 @@
 "No s'ha pogut enviar el missatge perquè els camps del remitent o del "
 "destinatari falten o no són vàlids."
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
@@ -78,6 +78,3 @@
 msgstr ""
 "No s'ha pogut enviar el missatge perquè s'ha excedit la mida màxima permesa "
 "de %1 bytes. (Mida del missatge: %2 bytes)."
-
-#~ msgid "Job"
-#~ msgstr "Tasca"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/ca@valencia/libksmtp5.po 
new/ksmtp-17.12.2/po/ca@valencia/libksmtp5.po
--- old/ksmtp-17.12.1/po/ca@valencia/libksmtp5.po       2018-01-09 
02:20:53.000000000 +0100
+++ new/ksmtp-17.12.2/po/ca@valencia/libksmtp5.po       2018-02-06 
01:44:46.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: libksmtp5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2017-07-25 07:10+0100\n"
 "Last-Translator: Antoni Bella Pérez <antonibel...@yahoo.com>\n"
 "Language-Team: Catalan <kde-i18n...@kde.org>\n"
@@ -61,7 +61,7 @@
 msgid "SendJob"
 msgstr "Envia la tasca"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
@@ -70,7 +70,7 @@
 "No s'ha pogut enviar el missatge perquè els camps del remitent o del "
 "destinatari falten o no són vàlids."
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
@@ -78,6 +78,3 @@
 msgstr ""
 "No s'ha pogut enviar el missatge perquè s'ha excedit la mida màxima permesa "
 "de %1 bytes. (Mida del missatge: %2 bytes)."
-
-#~ msgid "Job"
-#~ msgstr "Tasca"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/cs/libksmtp5.po 
new/ksmtp-17.12.2/po/cs/libksmtp5.po
--- old/ksmtp-17.12.1/po/cs/libksmtp5.po        2018-01-09 02:20:53.000000000 
+0100
+++ new/ksmtp-17.12.2/po/cs/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2017-05-18 10:31+0100\n"
 "Last-Translator: Vít Pelčák <v...@pelcak.org>\n"
 "Language-Team: Czech <kde-i18n-...@kde.org>\n"
@@ -54,14 +54,14 @@
 msgid "SendJob"
 msgstr "Poslat úlohu"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
 "missing or invalid"
 msgstr ""
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/de/libksmtp5.po 
new/ksmtp-17.12.2/po/de/libksmtp5.po
--- old/ksmtp-17.12.1/po/de/libksmtp5.po        2018-01-09 02:20:53.000000000 
+0100
+++ new/ksmtp-17.12.2/po/de/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: libksmtp\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2017-11-21 07:05+0100\n"
 "Last-Translator: Burkhard Lück <lu...@hube-lueck.de>\n"
 "Language-Team: German <kde-i18n...@kde.org>\n"
@@ -55,7 +55,7 @@
 msgid "SendJob"
 msgstr "Senden-Auftrag"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
@@ -64,7 +64,7 @@
 "Die Nachricht kann nicht gesendet werden, da entweder der Absender oder "
 "Empfänger fehlt oder ungültig ist."
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/en_GB/libksmtp5.po 
new/ksmtp-17.12.2/po/en_GB/libksmtp5.po
--- old/ksmtp-17.12.1/po/en_GB/libksmtp5.po     2018-01-09 02:20:53.000000000 
+0100
+++ new/ksmtp-17.12.2/po/en_GB/libksmtp5.po     2018-02-06 01:44:46.000000000 
+0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2017-11-26 21:08+0000\n"
 "Last-Translator: Steve Allewell <steve.allew...@gmail.com>\n"
 "Language-Team: British English <kde-i18n-...@kde.org>\n"
@@ -56,7 +56,7 @@
 msgid "SendJob"
 msgstr "SendJob"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
@@ -65,7 +65,7 @@
 "Could not send the message because either the sender or recipient field is "
 "missing or invalid"
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/es/libksmtp5.po 
new/ksmtp-17.12.2/po/es/libksmtp5.po
--- old/ksmtp-17.12.1/po/es/libksmtp5.po        2018-01-09 02:20:53.000000000 
+0100
+++ new/ksmtp-17.12.2/po/es/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2017-08-02 23:16+0100\n"
 "Last-Translator: Javier Vinal <fjvi...@gmail.com>\n"
 "Language-Team: Spanish <kde-l10n...@kde.org>\n"
@@ -60,7 +60,7 @@
 msgid "SendJob"
 msgstr "Enviar trabajo"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
@@ -69,7 +69,7 @@
 "No se ha podido enviar el mensaje porque los campos del remitente o del "
 "destinatario faltan o no son válidos."
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/et/libksmtp5.po 
new/ksmtp-17.12.2/po/et/libksmtp5.po
--- old/ksmtp-17.12.1/po/et/libksmtp5.po        2018-01-09 02:20:53.000000000 
+0100
+++ new/ksmtp-17.12.2/po/et/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2011-06-24 05:22+0300\n"
 "Last-Translator: Marek Laane <b...@smail.ee>\n"
 "Language-Team: Estonian <kde...@linux.ee>\n"
@@ -55,7 +55,7 @@
 msgid "SendJob"
 msgstr "SendJob"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
@@ -63,7 +63,7 @@
 msgstr ""
 "Kirja saatmine nurjus, sest saatja või saaja väli puudus või oli vigane"
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/fi/libksmtp5.po 
new/ksmtp-17.12.2/po/fi/libksmtp5.po
--- old/ksmtp-17.12.1/po/fi/libksmtp5.po        2018-01-09 02:20:53.000000000 
+0100
+++ new/ksmtp-17.12.2/po/fi/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -7,8 +7,8 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
-"PO-Revision-Date: 2017-09-08 11:10+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
+"PO-Revision-Date: 2017-12-25 20:35+0200\n"
 "Last-Translator: Tommi Nieminen <transla...@legisign.org>\n"
 "Language-Team: Finnish <kde-i18n-...@kde.org>\n"
 "Language: fi\n"
@@ -56,9 +56,9 @@
 #: sendjob.cpp:74
 #, kde-format
 msgid "SendJob"
-msgstr ""
+msgstr "SendJob"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
@@ -67,7 +67,7 @@
 "Viestiä ei voitu lähettää, koska joko lähettäjä- tai vastaanottajakenttä "
 "puuttuu tai on kelvoton"
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/fr/libksmtp5.po 
new/ksmtp-17.12.2/po/fr/libksmtp5.po
--- old/ksmtp-17.12.1/po/fr/libksmtp5.po        2018-01-09 02:20:53.000000000 
+0100
+++ new/ksmtp-17.12.2/po/fr/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: libksmtp\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2017-07-26 17:08+0800\n"
 "Last-Translator: Simon Depiets <sdepi...@gmail.com>\n"
 "Language-Team: French <kde-francoph...@kde.org>\n"
@@ -62,7 +62,7 @@
 msgid "SendJob"
 msgstr "Tâche d'envoi"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
@@ -71,7 +71,7 @@
 "Impossible d'envoyer le message car le champ « Expéditeur » ou "
 "« Destinataire » est absent ou non valable"
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/ga/libksmtp5.po 
new/ksmtp-17.12.2/po/ga/libksmtp5.po
--- old/ksmtp-17.12.1/po/ga/libksmtp5.po        2018-01-09 02:20:53.000000000 
+0100
+++ new/ksmtp-17.12.2/po/ga/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: libksmtp\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2011-12-28 12:28-0500\n"
 "Last-Translator: Kevin Scannell <ksca...@gmail.com>\n"
 "Language-Team: Irish <gaeilge-gnuli...@lists.sourceforge.net>\n"
@@ -54,14 +54,14 @@
 msgid "SendJob"
 msgstr ""
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
 "missing or invalid"
 msgstr ""
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/gl/libksmtp5.po 
new/ksmtp-17.12.2/po/gl/libksmtp5.po
--- old/ksmtp-17.12.1/po/gl/libksmtp5.po        2018-01-09 02:20:53.000000000 
+0100
+++ new/ksmtp-17.12.2/po/gl/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2017-11-03 17:48+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) <adr...@chaves.io>\n"
 "Language-Team: Galician <kde-i18n-...@kde.org>\n"
@@ -61,7 +61,7 @@
 msgid "SendJob"
 msgstr "Tarefa de envío"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
@@ -70,7 +70,7 @@
 "Non foi posíbel enviar a mensaxe porque faltan ou son incorrectos os campos "
 "do remitente ou do destinatario."
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/hu/libksmtp5.po 
new/ksmtp-17.12.2/po/hu/libksmtp5.po
--- old/ksmtp-17.12.1/po/hu/libksmtp5.po        2018-01-09 02:20:53.000000000 
+0100
+++ new/ksmtp-17.12.2/po/hu/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2013-10-27 08:23+0100\n"
 "Last-Translator: Balázs Úr <urbal...@gmail.com>\n"
 "Language-Team: Hungarian <kde-l10n...@kde.org>\n"
@@ -56,7 +56,7 @@
 msgid "SendJob"
 msgstr "Feladat küldése"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
@@ -65,7 +65,7 @@
 "Nem sikerült elküldeni az üzenetet, mert a feladó vagy a címzett mező "
 "hiányzik vagy érvénytelen"
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/it/libksmtp5.po 
new/ksmtp-17.12.2/po/it/libksmtp5.po
--- old/ksmtp-17.12.1/po/it/libksmtp5.po        2018-01-09 02:20:53.000000000 
+0100
+++ new/ksmtp-17.12.2/po/it/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: libksmtp\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2017-07-29 16:30+0200\n"
 "Last-Translator: Vincenzo Reale <smart2...@baslug.org>\n"
 "Language-Team: Italian <kde-i18n...@kde.org>\n"
@@ -56,7 +56,7 @@
 msgid "SendJob"
 msgstr "Invio"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
@@ -65,7 +65,7 @@
 "Impossibile inviare il messaggio poiché il campo del mittente o del "
 "destinatario è mancante o non valido"
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/ja/libksmtp5.po 
new/ksmtp-17.12.2/po/ja/libksmtp5.po
--- old/ksmtp-17.12.1/po/ja/libksmtp5.po        2018-01-09 02:20:53.000000000 
+0100
+++ new/ksmtp-17.12.2/po/ja/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: libksmtp\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2011-06-14 23:23-0700\n"
 "Last-Translator: Japanese KDE translation team <kde...@kde.org>\n"
 "Language-Team: Japanese <kde...@kde.org>\n"
@@ -51,14 +51,14 @@
 msgid "SendJob"
 msgstr ""
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
 "missing or invalid"
 msgstr ""
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/km/libksmtp5.po 
new/ksmtp-17.12.2/po/km/libksmtp5.po
--- old/ksmtp-17.12.1/po/km/libksmtp5.po        2018-01-09 02:20:53.000000000 
+0100
+++ new/ksmtp-17.12.2/po/km/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: libksmtp\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2011-06-28 07:53+0700\n"
 "Last-Translator: Khoem Sokhem <khoemsok...@khmeros.info>\n"
 "Language-Team: Khmer <supp...@khmeros.info>\n"
@@ -56,14 +56,14 @@
 msgid "SendJob"
 msgstr "SendJob"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
 "missing or invalid"
 msgstr "មិនអាច​ផ្ញើ​សារ​បាន​ទេ ពីព្រោះ​ទាំង​​វាល​អ្នក​ផ្ញើ ឬ​អ្នក​ទទួល​បាត់ 
ឬ​មិន​ត្រឹមត្រូវ"
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/ko/libksmtp5.po 
new/ksmtp-17.12.2/po/ko/libksmtp5.po
--- old/ksmtp-17.12.1/po/ko/libksmtp5.po        2018-01-09 02:20:53.000000000 
+0100
+++ new/ksmtp-17.12.2/po/ko/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2017-12-03 22:52+0100\n"
 "Last-Translator: Shinjo Park <k...@peremen.name>\n"
 "Language-Team: Korean <k...@peremen.name>\n"
@@ -54,7 +54,7 @@
 msgid "SendJob"
 msgstr "SendJob"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
@@ -63,7 +63,7 @@
 "보낸 사람이나 받는 사람 필드가 비어 있거나 잘못되었기 때문에 메시지를 보낼 "
 "수 없음"
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/lt/libksmtp5.po 
new/ksmtp-17.12.2/po/lt/libksmtp5.po
--- old/ksmtp-17.12.1/po/lt/libksmtp5.po        2018-01-09 02:20:53.000000000 
+0100
+++ new/ksmtp-17.12.2/po/lt/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: libksmtp\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2011-10-04 23:13+0300\n"
 "Last-Translator: Liudas Ališauskas <liudas.alisaus...@gmail.com>\n"
 "Language-Team: Lithuanian <kde-i18n-...@kde.org>\n"
@@ -59,7 +59,7 @@
 msgid "SendJob"
 msgstr "Siųsti darbą"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
@@ -68,7 +68,7 @@
 "Nepavyko išsiųsti laiško, nes trūksta siuntėjo arba gavėjo lauko, arba jie "
 "netinkami"
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/mr/libksmtp5.po 
new/ksmtp-17.12.2/po/mr/libksmtp5.po
--- old/ksmtp-17.12.1/po/mr/libksmtp5.po        2018-01-09 02:20:53.000000000 
+0100
+++ new/ksmtp-17.12.2/po/mr/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2013-04-02 13:56+0530\n"
 "Last-Translator: Chetan Khona <che...@kompkin.com>\n"
 "Language-Team: Marathi <kde-i18n-...@kde.org>\n"
@@ -54,14 +54,14 @@
 msgid "SendJob"
 msgstr "पाठविण्याचे कार्य"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
 "missing or invalid"
 msgstr ""
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/nds/libksmtp5.po 
new/ksmtp-17.12.2/po/nds/libksmtp5.po
--- old/ksmtp-17.12.1/po/nds/libksmtp5.po       2018-01-09 02:20:53.000000000 
+0100
+++ new/ksmtp-17.12.2/po/nds/libksmtp5.po       2018-02-06 01:44:46.000000000 
+0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: libksmtp\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2011-06-15 06:14+0200\n"
 "Last-Translator: Manfred Wiese <m.j.wi...@web.de>\n"
 "Language-Team: Low Saxon <kde-i18n-...@kde.org>\n"
@@ -55,14 +55,14 @@
 msgid "SendJob"
 msgstr ""
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
 "missing or invalid"
 msgstr ""
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/nl/libksmtp5.po 
new/ksmtp-17.12.2/po/nl/libksmtp5.po
--- old/ksmtp-17.12.1/po/nl/libksmtp5.po        2018-01-09 02:20:53.000000000 
+0100
+++ new/ksmtp-17.12.2/po/nl/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2017-07-25 19:02+0100\n"
 "Last-Translator: Freek de Kruijf <freekdekru...@kde.nl>\n"
 "Language-Team: Dutch <kde-i18n...@kde.org>\n"
@@ -56,7 +56,7 @@
 msgid "SendJob"
 msgstr "Taak verzenden"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
@@ -65,7 +65,7 @@
 "Kon het bericht niet verzenden omdat ofwel het afzender- of ontvangerveld "
 "ontbreekt of ongeldig is"
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/nn/libksmtp5.po 
new/ksmtp-17.12.2/po/nn/libksmtp5.po
--- old/ksmtp-17.12.1/po/nn/libksmtp5.po        2018-01-09 02:20:53.000000000 
+0100
+++ new/ksmtp-17.12.2/po/nn/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2016-11-28 19:47+0100\n"
 "Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n"
 "Language-Team: Norwegian Nynorsk <i18n...@lister.ping.uio.no>\n"
@@ -53,14 +53,14 @@
 msgid "SendJob"
 msgstr "Sendejobb"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
 "missing or invalid"
 msgstr ""
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/pl/libksmtp5.po 
new/ksmtp-17.12.2/po/pl/libksmtp5.po
--- old/ksmtp-17.12.1/po/pl/libksmtp5.po        2018-01-09 02:20:54.000000000 
+0100
+++ new/ksmtp-17.12.2/po/pl/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2017-10-22 05:54+0100\n"
 "Last-Translator: Łukasz Wojniłowicz <lukasz.wojnilow...@gmail.com>\n"
 "Language-Team: Polish <kde-i18n-...@kde.org>\n"
@@ -57,7 +57,7 @@
 msgid "SendJob"
 msgstr "WyślijZadanie"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
@@ -66,7 +66,7 @@
 "Nie można wysłać wiadomości, bo brakuje albo pola wysyłającego albo adresata "
 "lub są one nieprawidłowe"
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/pt/libksmtp5.po 
new/ksmtp-17.12.2/po/pt/libksmtp5.po
--- old/ksmtp-17.12.1/po/pt/libksmtp5.po        2018-01-09 02:20:54.000000000 
+0100
+++ new/ksmtp-17.12.2/po/pt/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: libksmtp\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2017-05-05 11:09+0100\n"
 "Last-Translator: José Nuno Coelho Pires <zepi...@gmail.com>\n"
 "Language-Team: Portuguese <kde-i18n...@kde.org>\n"
@@ -53,7 +53,7 @@
 msgid "SendJob"
 msgstr "Tarefa de Envio"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
@@ -62,7 +62,7 @@
 "Não foi possível enviar a mensagem, dado que o campo do remetente ou do "
 "destinatário está vazio ou é inválido"
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/pt_BR/libksmtp5.po 
new/ksmtp-17.12.2/po/pt_BR/libksmtp5.po
--- old/ksmtp-17.12.1/po/pt_BR/libksmtp5.po     2018-01-09 02:20:54.000000000 
+0100
+++ new/ksmtp-17.12.2/po/pt_BR/libksmtp5.po     2018-02-06 01:44:46.000000000 
+0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2011-12-18 22:51-0200\n"
 "Last-Translator: André Marcelo Alvarenga <andrealvare...@gmx.net>\n"
 "Language-Team: Brazilian Portuguese <kde-i18n-pt...@kde.org>\n"
@@ -57,7 +57,7 @@
 msgid "SendJob"
 msgstr "Tarefa de envio"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
@@ -66,7 +66,7 @@
 "Não foi possível enviar a mensagem pois o campo do remetente ou do "
 "destinatário está vazio ou é inválido"
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/ru/libksmtp5.po 
new/ksmtp-17.12.2/po/ru/libksmtp5.po
--- old/ksmtp-17.12.1/po/ru/libksmtp5.po        2018-01-09 02:20:54.000000000 
+0100
+++ new/ksmtp-17.12.2/po/ru/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2017-11-01 15:10+0300\n"
 "Last-Translator: Alexander Potashev <aspotas...@gmail.com>\n"
 "Language-Team: Russian <kde-russ...@lists.kde.ru>\n"
@@ -55,14 +55,14 @@
 msgid "SendJob"
 msgstr "Отправка писем"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
 "missing or invalid"
 msgstr ""
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/sk/libksmtp5.po 
new/ksmtp-17.12.2/po/sk/libksmtp5.po
--- old/ksmtp-17.12.1/po/sk/libksmtp5.po        2018-01-09 02:20:54.000000000 
+0100
+++ new/ksmtp-17.12.2/po/sk/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: libksmtp\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2017-08-02 21:43+0100\n"
 "Last-Translator: Roman Paholik <wizzar...@gmail.com>\n"
 "Language-Team: Slovak <kde...@linux.sk>\n"
@@ -54,7 +54,7 @@
 msgid "SendJob"
 msgstr "Poslať úlohu"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
@@ -63,7 +63,7 @@
 "Nemôžem poslať správu pretože pole odosielateľa alebo prijímateľa chýba "
 "alebo je neplatné"
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/sl/libksmtp5.po 
new/ksmtp-17.12.2/po/sl/libksmtp5.po
--- old/ksmtp-17.12.1/po/sl/libksmtp5.po        2018-01-09 02:20:54.000000000 
+0100
+++ new/ksmtp-17.12.2/po/sl/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2017-07-27 20:07+0100\n"
 "Last-Translator: Andrej Mernik <andr...@ubuntu.si>\n"
 "Language-Team: Slovenian <lugos-...@lugos.si>\n"
@@ -57,7 +57,7 @@
 msgid "SendJob"
 msgstr "SendJob"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
@@ -66,7 +66,7 @@
 "Sporočila ni bilo mogoče poslati, ker ima neveljavno oz. manjkajoče polje "
 "pošiljatelj ali prejemnik"
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/sr/libksmtp5.po 
new/ksmtp-17.12.2/po/sr/libksmtp5.po
--- old/ksmtp-17.12.1/po/sr/libksmtp5.po        2018-01-09 02:20:54.000000000 
+0100
+++ new/ksmtp-17.12.2/po/sr/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: libksmtp5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2017-08-05 19:10+0200\n"
 "Last-Translator: Chusslove Illich <caslav.i...@gmx.net>\n"
 "Language-Team: Serbian <kde-i18n...@kde.org>\n"
@@ -58,7 +58,7 @@
 msgid "SendJob"
 msgstr "Слање"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
@@ -67,7 +67,7 @@
 "Не могу да пошаљем поруку зато што је или поље пошиљаоца или примаоца празно "
 "или лоше."
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/sv/libksmtp5.po 
new/ksmtp-17.12.2/po/sv/libksmtp5.po
--- old/ksmtp-17.12.1/po/sv/libksmtp5.po        2018-01-09 02:20:54.000000000 
+0100
+++ new/ksmtp-17.12.2/po/sv/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2017-07-25 08:23+0100\n"
 "Last-Translator: Stefan Asserhäll <stefan.asserh...@bredband.net>\n"
 "Language-Team: Swedish <kde-i18n-...@kde.org>\n"
@@ -56,7 +56,7 @@
 msgid "SendJob"
 msgstr "Sändningsjobb"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
@@ -65,7 +65,7 @@
 "Kunde inte skicka brevet eftersom antingen fältet för avsändare eller "
 "mottagare saknas eller är ogiltigt"
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/tr/libksmtp5.po 
new/ksmtp-17.12.2/po/tr/libksmtp5.po
--- old/ksmtp-17.12.1/po/tr/libksmtp5.po        2018-01-09 02:20:54.000000000 
+0100
+++ new/ksmtp-17.12.2/po/tr/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: libksmtp5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2017-08-17 08:31+0000\n"
 "Last-Translator: Kaan <kaanozdin...@gmail.com>\n"
 "Language-Team: Turkish <kde-i18n-...@kde.org>\n"
@@ -56,7 +56,7 @@
 msgid "SendJob"
 msgstr "GörevGönder"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
@@ -64,7 +64,7 @@
 msgstr ""
 "İleti gönderilemedi, çünkü gönderen veya alıcı alanları eklsik ya da geçersiz"
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/ug/libksmtp5.po 
new/ksmtp-17.12.2/po/ug/libksmtp5.po
--- old/ksmtp-17.12.1/po/ug/libksmtp5.po        2018-01-09 02:20:54.000000000 
+0100
+++ new/ksmtp-17.12.2/po/ug/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: libksmtp\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2013-09-08 07:05+0900\n"
 "Last-Translator: Gheyret Kenji <ghey...@gmail.com>\n"
 "Language-Team: Uyghur <kde-i18n-...@kde.org>\n"
@@ -54,14 +54,14 @@
 msgid "SendJob"
 msgstr ""
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
 "missing or invalid"
 msgstr ""
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/uk/libksmtp5.po 
new/ksmtp-17.12.2/po/uk/libksmtp5.po
--- old/ksmtp-17.12.1/po/uk/libksmtp5.po        2018-01-09 02:20:54.000000000 
+0100
+++ new/ksmtp-17.12.2/po/uk/libksmtp5.po        2018-02-06 01:44:46.000000000 
+0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: libksmtp5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
 "PO-Revision-Date: 2017-07-25 09:06+0200\n"
 "Last-Translator: Yuri Chornoivan <yurc...@ukr.net>\n"
 "Language-Team: Ukrainian <kde-i18n...@kde.org>\n"
@@ -59,7 +59,7 @@
 msgid "SendJob"
 msgstr "Надсилання"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
@@ -68,7 +68,7 @@
 "Не вдалося надіслати повідомлення, оскільки поле відправника або отримувача "
 "не заповнено або заповнено з помилками."
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/po/zh_CN/libksmtp5.po 
new/ksmtp-17.12.2/po/zh_CN/libksmtp5.po
--- old/ksmtp-17.12.1/po/zh_CN/libksmtp5.po     2018-01-09 02:20:54.000000000 
+0100
+++ new/ksmtp-17.12.2/po/zh_CN/libksmtp5.po     2018-02-06 01:44:46.000000000 
+0100
@@ -2,8 +2,8 @@
 msgstr ""
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2017-08-02 07:05+0200\n"
-"PO-Revision-Date: 2018-01-08 18:07-0500\n"
+"POT-Creation-Date: 2018-01-30 05:43+0100\n"
+"PO-Revision-Date: 2018-02-04 20:33-0500\n"
 "Last-Translator: guoyunhebrave <guoyunhebr...@gmail.com>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
@@ -53,14 +53,14 @@
 msgid "SendJob"
 msgstr "发送任务"
 
-#: sendjob.cpp:120
+#: sendjob.cpp:123
 #, kde-format
 msgid ""
 "Could not send the message because either the sender or recipient field is "
 "missing or invalid"
 msgstr "无法发送信件因为发信人或者收件人缺失或无效"
 
-#: sendjob.cpp:128
+#: sendjob.cpp:131
 #, kde-format
 msgid ""
 "Could not send the message because it exceeds the maximum allowed size of %1 "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksmtp-17.12.1/src/sendjob.cpp 
new/ksmtp-17.12.2/src/sendjob.cpp
--- old/ksmtp-17.12.1/src/sendjob.cpp   2017-12-31 12:38:47.000000000 +0100
+++ new/ksmtp-17.12.2/src/sendjob.cpp   2018-02-05 10:14:22.000000000 +0100
@@ -109,6 +109,9 @@
 {
     Q_D(SendJob);
     d->m_data = data;
+    // A line with a single dot would make SMTP think "end of message", so use 
two dots in that case,
+    // as per https://tools.ietf.org/html/rfc5321#section-4.5.2
+    d->m_data.replace("\r\n.\r\n", "\r\n..\r\n");
 }
 
 void SendJob::doStart()


Reply via email to