以下是我正在使用的代码:
Properties props = System.getProperties();
props.put("mail.smtp.auth", "true");
// props.put("mail.smtp.starttls.enable", "true");
props.put("mail.smtp.host", server);
props.put("mail.smtp.port", "25");
Session session = Session.getInstance(props);
Transport transport = null;
try {
transport = session.getTransport("smtp");
session.setDebug(true);
transport.connect(server, username, password);
} catch(AuthenticationFailedException message){
System.out.println("Authentication Failed... terminating!");
System.out.println(message);
System.exit(16);
}
不幸的是,我没有看到会话握手。我是否将setDebug放在错误的位置?
答案 0 :(得分:2)
是的,您需要在创建Transport对象之前设置它。将它向上移动一行。
另请注意,从JavaMail 1.4.5开始,默认情况下不会显示身份验证交换的详细信息。您需要将“mail.debug.auth”设置为“true”才能看到。