From: Laurent Montel Date: Tue, 28 Jul 2020 11:35:24 +0000 (+0200) Subject: [PATCH] Fix Bug 423426 - POP3 setup wizard defaults to unencrypted connections X-Git-Tag: archive/raspbian/4%20.04.1-2+rpi1^2~3 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=1fabc609ab76513b4bc65fb49b7bac8eefc92f5c;p=kdepim-runtime.git [PATCH] Fix Bug 423426 - POP3 setup wizard defaults to unencrypted connections 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 --- diff --git a/resources/pop3/wizard/pop3wizard.es b/resources/pop3/wizard/pop3wizard.es index 81d511d0..aa83d0ab 100644 --- a/resources/pop3/wizard/pop3wizard.es +++ b/resources/pop3/wizard/pop3wizard.es @@ -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(); }