我当前正在尝试使用pop3
阅读邮箱电子邮件,但是我的主机正在使用n
端口,而995端口不适合我的需要。我得到:
Exception in thread "main" com.sun.mail.util.MailConnectException: Couldn't connect to host, port: host_here, 995; timeout -1;
nested exception is:
还有其他方法可以读取邮箱中的邮件吗? 帮助
编辑
...
Properties properties = new Properties();
properties.put("mail.pop3.port", "123");
...