我的服务器防火墙出了问题。我尝试使用sendmail从我的服务器发送电子邮件,但是当防火墙被激活时,它是不可能的。我在日志中发现以下错误:
无法连接到主机,端口:mail.infomaniak.ch,25;超时-1
当我的防火墙被禁用时,一切正常,我的邮件就会被发送。所以我试图在防火墙的输出端打开端口25,但没有任何改变,我总是遇到同样的问题。
这是我的代码:
public void envoyerMailSMTP(ArrayList<String> to, ArrayList<String> cc, ArrayList<String> bcc, String from, String subject, String body, String attachment, String attachmentName) throws Exception {
this.catalog = (Catalog)lookupEjb("CatalogLocal", true);
Properties props = new Properties();
props.put("mail.transport.protocol", "smtp");
//props.put("mail.smtp.port", "587");
props.put("mail.smtp.host", this.catalog.getFirst(this.catalog.findByKey("SMTP_HOST_NAME")).getCatalogValue());
props.put("mail.smtp.auth", "true");
Session mailSession = Session.getDefaultInstance(props);
// uncomment for debugging infos to stdout
// mailSession.setDebug(true);
try {
Transport transport = mailSession.getTransport();
MimeMessage message = new MimeMessage(mailSession);
// Ajout de l'expéditeur du mail
if(from != null && !from.isEmpty()){
message.setFrom(new InternetAddress(from));
}
// Ajout de(s) destinataire(s) du mail
for(String s : to){
message.addRecipient(Message.RecipientType.TO, new InternetAddress(s));
}
// Ajout de(s) destinataire(s) du mail en cc
if(cc != null && cc.size() > 0){
for(String s : cc){
message.addRecipient(Message.RecipientType.CC, new InternetAddress(s));
}
}
// Ajout de(s) destinataire(s) du mail en bcc
if(bcc != null && bcc.size() > 0){
for(String s : bcc){
message.addRecipient(Message.RecipientType.BCC, new InternetAddress(s));
}
}
// Set Subject: header field
message.setSubject(subject);
// Create the message part
BodyPart messageBodyPart = new MimeBodyPart();
// Fill the message
messageBodyPart.setText(body);
// Create a multipart message
Multipart multipart = new MimeMultipart();
// Set text message part
multipart.addBodyPart(messageBodyPart);
// Part two is attachment
messageBodyPart = new MimeBodyPart();
DataSource source = new FileDataSource(attachment);
messageBodyPart.setDataHandler(new DataHandler(source));
// Set the name of the attached file
messageBodyPart.setFileName(attachmentName);
multipart.addBodyPart(messageBodyPart);
// Send the complete message parts
message.setContent(multipart);
transport.connect(this.catalog.getFirst(this.catalog.findByKey("SMTP_HOST_NAME")).getCatalogValue(),
this.catalog.getFirst(this.catalog.findByKey("SMTP_AUTH_USER")).getCatalogValue(),
this.catalog.getFirst(this.catalog.findByKey("SMTP_AUTH_PWD")).getCatalogValue());
transport.sendMessage(message, message.getRecipients(Message.RecipientType.TO));
transport.close();
}catch (MessagingException ex){
System.out.println(ex.getMessage());
System.out.println(ex.getStackTrace());
}
}
我还尝试修改我的代码以使用端口587并在防火墙上打开它,但它并不好。
我有一台Linux服务器,我使用ufw作为防火墙。
有人可以帮助我吗?
答案 0 :(得分:0)
如果您默认阻止传出流量,那么您需要启用从所有源端口到目标端口25的连接.SMTP从主机上的随机端口连接到端口25上的端口服务器,所以你不能只打开端口25传出。如果它是非root用户进行连接,那么您可以打开1024-65545端口,因为非root用户无法打开端口&lt; 1024
您可以通过以下方式允许传出连接:
ufw default allow outgoing