[PATCH] Fix Bug 423426 - POP3 setup wizard defaults to unencrypted connections
authorLaurent Montel <montel@kde.org>
Tue, 28 Jul 2020 11:35:24 +0000 (13:35 +0200)
committerPino Toscano <pino@debian.org>
Sat, 22 Aug 2020 18:35:34 +0000 (19:35 +0100)
Make sure to use TLS when we create it
CCBUG: 423426

Gbp-Pq: Name upstream_Fix-Bug-423426-POP3-setup-wizard-defaults-to-unencry.patch

resources/pop3/wizard/pop3wizard.es

index 81d511d0aa87b1c691e1fb24f6c216b801c84267..aa83d0abf93bb756302ed4ec6dea185f3c55ff3f 100644 (file)
@@ -53,7 +53,7 @@ function setup()
   var smtp = SetupManager.createTransport( "smtp" );
   smtp.setName( SetupManager.name() );
   smtp.setHost( page.widget().outgoingAddress.text.trim() );
-  smtp.setEncryption( "NONE" );
+  smtp.setEncryption( "SSL" );
 
   SetupManager.execute();
 }