fix: 补齐 126 邮箱 host 家族识别

This commit is contained in:
Ryan Liu
2026-04-23 09:57:29 +08:00
parent 45546dcb85
commit b89d5389ee
4 changed files with 30 additions and 0 deletions
+2
View File
@@ -3542,6 +3542,8 @@ function is163MailHost(hostname = '') {
}
return hostname === 'mail.163.com'
|| hostname.endsWith('.mail.163.com')
|| hostname === 'mail.126.com'
|| hostname.endsWith('.mail.126.com')
|| hostname === 'webmail.vip.163.com';
}