summaryrefslogtreecommitdiff
blob: 92fec0bbcfcbdf1c6f1c449f372e3cd1e4da6b74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
From bd64ab29116aa7318fdee7f95878ff97580162f2 Mon Sep 17 00:00:00 2001
From: Laurent Montel <montel@kde.org>
Date: Tue, 28 Jul 2020 13:35:24 +0200
Subject: [PATCH] Fix Bug 423426 - POP3 setup wizard defaults to unencrypted
 connections

Make sure to use TLS when we create it
CCBUG: 423426
---
 resources/pop3/wizard/pop3wizard.es | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/resources/pop3/wizard/pop3wizard.es b/resources/pop3/wizard/pop3wizard.es
index 81d511d0a..aa83d0abf 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();
 }
-- 
GitLab