Update add_mail_acc.js

I noticed that the ssl option in the mail configuration UI sets the IMAP port to 993, which is correct for IMAP over SSL/TLS (IMAPS). However, when verifying an email account in Gmail’s "Check mail from other accounts" feature, port 993 didn’t work because Gmail requires POP3 over SSL/TLS on port 995 (POP3S). This caused confusion since the UI labels this as "IMAP Port," but users may need POP3 for certain setups like Gmail.
This commit is contained in:
Nirvana 2025-05-16 20:59:16 +01:00 committed by GitHub
commit 4e7c7ddecd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -154,7 +154,7 @@ $(document).ready(function() {
$('#td_smtp_encryption').html('STARTTLS');
break;
case 'ssl':
$('#td_imap_port').html('993');
$('#td_imap_port').html('993 or 995');
$('#td_imap_encryption').html('SSL / TLS');
$('#td_smtp_port').html('465');
$('#td_smtp_encryption').html('SSL / TLS');