我正在尝试使用我编写的应用程序连接到我公司的 Exchange 服务器。我已经连续搜索了 2 天,但我不知道为什么它不起作用。
首先,这是我的代码:
String to = "you@yours.com";
String from = "me@mine.com";
String host = "mail.exchange.server.net";
final String username = "me@mine.com";
final String password = "password";
String provider = "imap";
Properties props = new Properties();
// props.put("mail.smtp.host", host);
props.put("mail.store.protocol", "imap");
// props.put("mail.smtp.user", username);
// props.put("mail.smtp.password", password);
props.put("mail.imap.port", "143");
// props.put("mail.smtp.auth", "true");
//Removed to simplify method//
// Authenticator authenticator = new Authenticator() {
// @Override
// protected PasswordAuthentication getPasswordAuthentication() {
// return new PasswordAuthentication(username, password);
// }
// };
Session session = Session.getInstance(props);
Store store = session.getStore(provider);
try {
Message msg = new MimeMessage(session);
msg.setFrom(new InternetAddress(from));
InternetAddress[] address = {new InternetAddress(to)};
msg.setRecipients(Message.RecipientType.TO, address);
msg.setSubject("Test");
msg.setSentDate(new Date());
msg.setText("This works.");
Transport transport = session.getTransport();
transport.connect(username, password);
transport.sendMessage(msg, msg.getRecipients(Message.RecipientType.TO));
Transport.send(msg);
transport.sendMessage(msg, address);
if (transport == null) {
JOptionPane.showMessageDialog(rootPane, "Mail carrier was shot. Sorry.");
}
我试图让这个尽可能简单。没有 SSL,没有 IMAPS,没有 Authenticator,没什么花哨的。它拒绝接受提供者。它踢回一条消息(通过System.err.println
),上面写着“无效的提供者”或“提供者为空”。我假设只有 JavaMail API 足以连接到使用 IMAP 协议的普通 Exchange 服务器。
这是我得到的:
javax.mail.NoSuchProviderException: Invalid protocol: null
at javax.mail.Session.getProvider(Session.java:449)
at javax.mail.Session.getTransport(Session.java:667)
at javax.mail.Session.getTransport(Session.java:648)
at javax.mail.Session.getTransport(Session.java:634)
对我来说,JavaMail 似乎没有 IMAP 的任何内容,我将不得不将另一个库导入我的项目。有人看到发生了什么吗?
Ero 附录:我可以通过手机、iPad 和笔记本电脑建立会话。这让我相信这不是端口或连接问题。我只是暂时尝试连接到服务器。我可以稍后敲定认证的细节。
谢谢!