1

我正在尝试使用 imap 协议连接到 james 服务器,但出现以下异常:

Exception in thread "main" javax.mail.MessagingException: Network is unreachable: connect;
nested exception is:
java.net.SocketException: Network is unreachable: connect
at com.sun.mail.imap.IMAPStore.protocolConnect(IMAPStore.java:611)
at javax.mail.Service.connect(Service.java:291)
at javax.mail.Service.connect(Service.java:172)
at mail.main(mail.java:112)
Caused by: java.net.SocketException: Network is unreachable: connect
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
at java.net.SocksSocketImpl.connect(PlainSocketImpl.java:366)
at java.net.Socket.connect(Socket.java:519)
at java.net.Socket.connect(Socket.java:469)
at com.sun.mail.util.SocketFetcher.createSocket(SocketFetcher.java:267)
at com.sun.mail.util.SocketFetcher.getSocket(SocketFetcher.java:277)
at com.sun.mail.iap.Protocol.<init>(Protocol.java:107)
at com.sun.mail.imap.protocol.IMAPProtocol.<init>(IMAPProtocol.java:103)
at com.sun.mail.imap.IMAPStore.protocolConnect(IMAPStore.java:578)
... 3 more

James 服务器已经在运行,我不明白上述异常的原因。这是因为 James 不支持此协议还是有其他原因?

这是试图连接到 James 服务器的 Javamail 应用程序的源代码:

import java.io.IOException;
import java.io.PrintWriter;
import java.util.Properties;
import javax.mail.*;
import javax.mail.internet.*;

public class mail{

public static void main(String[] argts){


        try {


            Properties props=new Properties();

            props.put("mail.host", "127.0.0.1 ");
            props.put("mail.smtp.auth","true");

  Session  session = Session.getInstance(props, new javax.mail.Authenticator() {

protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication("blue", "blue");
}
});




int Spam=0;
Store store=session.getStore("imap");
store.connect("localhost", "red", "red");
Folder folder=store.getFolder("IMAPFolder");
Folder folder1=store.getFolder("Spam");
boolean b=folder1.create(Spam);
System.out.println(b);  

        } catch (Throwable t) {
           t.printStackTrace();
        }


        }

    }

}

4

2 回答 2

2

快速检查一下您是否可以通过使用 telnet 与您的 IMAP 服务器通信:

telnet localhost 143

如果这没有连接,那么 James 没有发布 IMAP 连接(假设是标准 IMAP 端口)。

我从下面看到您使用的是 James 2.x。此链接表明不支持 IMAP。

于 2009-09-30T21:52:31.843 回答
0

看起来更像是网络配置错误(你能 ping 吗) 检查 127.0.0.1 是否设置正确(并摆脱那个空间)

于 2009-09-30T22:44:20.683 回答