com.sun.mail.util.MailConnectException:无法连接到主机,端口:localhost,25;超时-1;
Posted
技术标签:
【中文标题】com.sun.mail.util.MailConnectException:无法连接到主机,端口:localhost,25;超时-1;【英文标题】:com.sun.mail.util.MailConnectException: Couldn't connect to host, port: localhost, 25; timeout -1; 【发布时间】:2017-01-29 12:26:18 【问题描述】:package jmail;
import java.util.Date; import java.util.Properties;
import javax.mail.Authenticator; import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.AddressException;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
public class htmlJavaSend
public void sendHtmlEmail(String host, String port,
final String userName, final String password, String toAddress,
String subject, String message) throws AddressException,
MessagingException
// sets SMTP server properties
Properties properties = new Properties();
properties.put("mail.man.com", host);
properties.put("mail.25", port);
properties.put("mail.smtp.auth", "true");
properties.put("mail.smtp.starttls.enable", "true");
properties.put("mail.smtp.ssl.trust","mail.man.com");
// creates a new session with an authenticator
Authenticator auth = new Authenticator()
public PasswordAuthentication getPasswordAuthentication()
return new PasswordAuthentication(userName, password);
;
Session session = Session.getInstance(properties, auth);
// creates a new e-mail message
Message msg = new MimeMessage(session);
msg.setFrom(new InternetAddress(userName));
InternetAddress[] toAddresses = new InternetAddress(toAddress);
msg.setRecipients(Message.RecipientType.TO, toAddresses);
msg.setSubject(subject);
msg.setSentDate(new Date());
// set plain text message
msg.setContent(message, "text/html");
// sends the e-mail
Transport.send(msg);
public static void main(String[] args)
// SMTP server information
String host = "mail.man.com";
String port = "25";
String mailFrom = "admin@man.com";
String password = "Man";
// outgoing message information
String mailTo = "ji@man.com";
String subject = "Hello my friend";
// message contains HTML markups
String message = "<i>Greetings!</i><br>";
message += "<b>Wish you a nice day!</b><br>";
message += "<font color=red>Duke</font>";
HtmlJavaSend mailer = new HtmlJavaSend();
try
mailer.sendHtmlEmail(host, port, mailFrom, password, mailTo,
subject, message);
System.out.println("Email sent.");
catch (Exception ex)
System.out.println("Failed to sent email.");
ex.printStackTrace();
错误是:
错误运行:发送电子邮件失败。 com.sun.mail.util.MailConnectException:无法连接到主机, 端口:本地主机,25;超时-1;嵌套异常是: java.net.ConnectException:连接被拒绝:连接在 com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:2100) 在 com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:699) 在 javax.mail.Service.connect(Service.java:388) 在 javax.mail.Service.connect(Service.java:246) 在 javax.mail.Service.connect(Service.java:195) 在 javax.mail.Transport.send0(Transport.java:254) 在 javax.mail.Transport.send(Transport.java:124) 在 jmail.HtmlJavaSend.sendHtmlEmail(HtmlJavaSend.java:62) 在 jmail.HtmlJavaSend.main(HtmlJavaSend.java:85) 原因: java.net.ConnectException:连接被拒绝:连接在 java.net.DualStackPlainSocketImpl.connect0(Native Method) 在 java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:79) 在 java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) 在 java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) 在 java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) 在 java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172) 在 java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) 在 java.net.Socket.connect(Socket.java:579) 在 java.net.Socket.connect(Socket.java:528) 在 com.sun.mail.util.SocketFetcher.createSocket(SocketFetcher.java:331) 在 com.sun.mail.util.SocketFetcher.getSocket(SocketFetcher.java:238) 在 com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:2066) ... 8 次构建成功(总时间:1 秒)
【问题讨论】:
我得到的错误是 你只放了很多代码,为你的问题添加一些描述。 这是我的错误无法发送电子邮件。 嵌套异常是:java.net.ConnectException:连接被拒绝:连接在 com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:2100) 下定决心。您发布的堆栈跟踪显示java.io.IOException: Server is not trusted:
,这只能发生在 TCP 连接成功之后;并且没有“连接被拒绝:连接超时”这样的消息。
我更正了堆栈
【参考方案1】:
这里有错误:
properties.put("mail.man.com", host);
properties.put("25", port);
应该是:
properties.put("mail.smtp.host", host);
properties.put("mail.smtp.port", port);
【讨论】:
我试图在电子邮件中使用 html 内容,而不仅仅是文本。我只能发送文本格式,但显然 html 格式给我带来了问题 我是否完全复制粘贴? properties.put("mail.smtp.host", 主机); properties.put("mail.smtp.port", 端口);因为我尝试了 krzosik,所以我收到错误 com.sun.mail.util.MailConnectException:无法连接到主机,端口:localhost,25;超时-1;嵌套异常是:java.net.ConnectException: Connection denied: connect at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:2100) 我可以确认 25 端口是开放的。我通过端口 25 为 、mail.man.com 和 ip 运行了一个 telnet 会话。他们都返回了 202 服务就绪消息。所以我不认为是端口或防火墙访问是拒绝连接的原因。【参考方案2】:根据:
properties.put("mail.25", port);
您正在连接到提供明文 SMTP 的端口。这得到了您在使用 telnet 时收到 202 service ready message
消息的观察的支持。
但是您还设置属性以使用 TLS:
properties.put("mail.smtp.starttls.enable", "true");
properties.put("mail.smtp.ssl.trust","mail.man.com");
如果您使用端口 25,请不要启用 TLS,或者在启用 TLS 的情况下使用端口 465
(带 TLS 的 SMTP 的标准端口)。
【讨论】:
以上是关于com.sun.mail.util.MailConnectException:无法连接到主机,端口:localhost,25;超时-1;的主要内容,如果未能解决你的问题,请参考以下文章