不接收localhost Mercury邮件发送的电子邮件

时间:2013-04-10 23:30:51

标签: java xampp javamail

我正在使用XAMPP在tomcat中部署我的java应用程序,并使用水银邮件来发送电子邮件。现在我只是使用java邮件API和水银电子邮件测试我的应用程序。我已经在Mercury中完成了必要的配置来设置localhost。我的程序运行成功,没有任何错误。 Mercury日志文件也没有说明任何错误。

T 20130411 044359 51663963 Connection from 127.0.0.1
T 20130411 044359 51663963 EHLO 10.226.44.101
T 20130411 044359 51663963 MAIL FROM:<promil@localhost.com>
T 20130411 044359 51663963 RCPT TO:<*****@gmail.com>
T 20130411 044359 51663963 DATA
T 20130411 044359 51663963 DATA - 22 lines, 689 bytes.
T 20130411 044359 51663963 QUIT
T 20130411 044359 51663963 Connection closed with 127.0.0.1, 0 sec. elapsed.

这也是我的java文件......

public static void main(String [] args)        {

      // Recipient's email ID needs to be mentioned.
      String to = "****@gmail.com";

      // Sender's email ID needs to be mentioned
      String from = "promil@localhost.com";

      // Assuming you are sending email from localhost
      String host = "localhost";
      String password = "****";

      // Get system properties
      Properties properties = System.getProperties();

      // Setup mail server
      properties.setProperty("mail.smtp.host", host);

   // Setup mail server
      properties.setProperty("mail.smtp.password", password);

      // Get the default Session object.
      Session session = Session.getDefaultInstance(properties);

      try{
         // Create a default MimeMessage object.
         MimeMessage message = new MimeMessage(session);

         // Set From: header field of the header.
         message.setFrom(new InternetAddress(from));

         // Set To: header field of the header.
         message.addRecipient(Message.RecipientType.TO,
                                  new InternetAddress(to));

         // Set Subject: header field
         message.setSubject("This is the Subject Line!");

         // Create the message part 
         BodyPart messageBodyPart = new MimeBodyPart();

         // Fill the message
         messageBodyPart.setText("This is message body");

         // Create a multipar message
         Multipart multipart = new MimeMultipart();

         // Set text message part
         multipart.addBodyPart(messageBodyPart);

         // Part two is attachment
         messageBodyPart = new MimeBodyPart();
         String filename = "C:/Users/toshiba/Desktop/file.txt";
         DataSource source = new FileDataSource(filename);
         messageBodyPart.setDataHandler(new DataHandler(source));
         messageBodyPart.setFileName(filename);
         multipart.addBodyPart(messageBodyPart);

         // Send the complete message parts
         message.setContent(multipart );

         // Send message
         Transport.send(message);
         System.out.println("Sent message successfully....");
      }catch (MessagingException mex) {
         mex.printStackTrace();
      }

我对它绝对无能为力..... 此外,我的Mercury核心流程表示它还有4个待处理的工作.... ???

1 个答案:

答案 0 :(得分:0)

目的地址在gmail。你还没有澄清邮件应该在本地发送还是在gmail上发送,所以我假设你要将邮件转到Gmail帐户,你已经(正确地)在你的帖子中进行了混淆。

您发布的会话记录在您的Java客户端和本地Mercury邮件服务器之间。所有这些都说明当地的Mercury邮件服务器接受了来自Java客户端的邮件。

会话记录不包含有关本地Mercury邮件服务器接受邮件后发生的情况的信息。如果正确设置了本地配置,那么Mercury邮件应该尝试通过查找Gmail的MX记录并连接到MX查找返回的其中一个服务器来转发邮件。

有关详细信息,您必须查看Mercury服务器的日志以查看它是否尝试传递消息。

猜测:

您的Mercury邮件服务器尝试传递邮件,但Gmail拒绝了该邮件,因为您运行的计算机具有ISP分配的DHCP(动态)地址。大量垃圾邮件源自此类地址,许多邮件主机甚至拒绝与这些邮件源通信。无论如何,如果Gmail拒绝了它,Mercury邮件必须将其“反弹”回发件人。但是,您可能没有为promil@localhost.com设置传入邮箱,因此它无法存储反弹并将其丢弃。再次,查看Mercury邮件日志以获取详细信息。

根据您提供的信息,这是任何人都可以给出的最佳答案。