外部电子邮件不工作交换和javamail

时间:2016-03-16 02:46:39

标签: java email javamail exchange-server

大家早上好,

我尝试在我的组织中发送外部电子邮件对我不起作用。当我尝试internel电子邮件地址时工作正常..我得到例外"无效邮件地址5.1.7无法转发"

我也尝试通过TELNET发送外部电子邮件。它在TELNET中运行良好。 Exchange 2013接收连接器匿名中继已启用。



  Properties props = System.getProperties();
    			  props.put(SMTP_HOST_KEY,smtphost);
    			  Session session=null;
    			  System.out.println("Entering into sendSMTPMail=============(props)"+props);  	
    			  MailAuthentication authorization =new EmailManager().new MailAuthentication();
    			  LogWriter.log("CREATING THE DEFAULT SESSION");
    			  System.out.println("Entering into sendSMTPMail=============(AUTHORIZATION)"+AUTHORIZATION); 
    			  System.out.println("Entering into sendSMTPMail=============(authorization)"+authorization);
    			  System.out.println("Entering into sendSMTPMail=============(session)"+session);
    			  if(AUTHORIZATION)session = Session.getInstance(props, authorization);
    			  else session = Session.getInstance(props, null);
    			  session.setDebug(debug);
    			  System.out.println("Entering into sendSMTPMail=============(session)"+session);




java中的OUTPUT:

发送没问题

rcpt是Invaild邮件地址5.1.7无法中继

TELNET输出:

发送没问题

rcpt没问题

需要帮助......请告诉我javacode或Exchange 2013中的问题

感谢.....

0 个答案:

没有答案