mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 18:07:31 +09:00
Issue #1358 - Default to SSL/TLS when using the Account Wizard
This commit is contained in:
parent
2aca38b372
commit
45cb58760b
2 changed files with 6 additions and 3 deletions
|
|
@ -158,7 +158,10 @@ function setServerType()
|
|||
var serverType = document.getElementById("servertype").value;
|
||||
var deferStorageBox = document.getElementById("deferStorageBox");
|
||||
var leaveMessages = document.getElementById("leaveMsgsOnSrvrBox");
|
||||
var port = serverType == "pop3" ? 110 : 143;
|
||||
|
||||
// pop3 110 (unsecure) 995 (SSL)
|
||||
// imap 143 (unsecure) 993 (SSL)
|
||||
var port = serverType == "pop3" ? 995 : 993;
|
||||
|
||||
document.getElementById("serverPort").value = port;
|
||||
document.getElementById("defaultPortValue").value = port;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue