projects
/
kdepim-runtime.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
19a3d09
)
[PATCH] Fix Bug 423426 - POP3 setup wizard defaults to unencrypted connections
author
Laurent Montel
<montel@kde.org>
Tue, 28 Jul 2020 11:35:24 +0000
(13:35 +0200)
committer
Pino 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
patch
|
blob
|
history
diff --git
a/resources/pop3/wizard/pop3wizard.es
b/resources/pop3/wizard/pop3wizard.es
index 81d511d0aa87b1c691e1fb24f6c216b801c84267..aa83d0abf93bb756302ed4ec6dea185f3c55ff3f 100644
(file)
--- 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();
}