admin 管理员组

文章数量: 1184232

jdk17使用163邮箱发送邮件报如下错误
Could not connect to SMTP host: smtp.163, port: 465
No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
解决
更换jar

dependency>
    <groupId>javax.mail</groupId>
    <artifactId>mail</artifactId>
    <version>1.4.7</version>
</dependency>

更改为

<dependency>
    <groupId>com.sun.mail</groupId>
    <artifactId>javax.mail</artifactId>
    <version>1.6.2</version>
</dependency>

参考

本文标签: disabled Protocol Cipher inappropriate suites