Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
KDE PIM Runtime
Commits
bd64ab29
Commit
bd64ab29
authored
Jul 28, 2020
by
Laurent Montel
Browse files
Fix Bug 423426 - POP3 setup wizard defaults to unencrypted connections
Make sure to use TLS when we create it
CCBUG: 423426
parent
4e76d0db
Pipeline
#29053
failed with stage
in 26 minutes and 45 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
resources/pop3/wizard/pop3wizard.es
View file @
bd64ab29
...
...
@@ -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();
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment