我正在尝试从mail-service.xml文件获取会话时从jboss发送邮件。
javax.naming.Context ictx = new javax.naming.InitialContext();
Session mailSession = (Session) ictx.lookup("java:/Mail");
这是我的mail-service.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<!--DOCTYPE server-->
<!-- $Id: mail-service.xml,v 1.5 2003/08/27 04:34:12 patriot1burke Exp $ -->
<server>
<!-- ==================================================================== -->
<!-- Mail Connection Factory -->
<!-- ==================================================================== -->
<mbean code="org.jboss.mail.MailService"
name="jboss:service=Mail">
<attribute name="JNDIName">java:/Mail</attribute>
<attribute name="User">nobody</attribute>
<attribute name="Password">password</attribute>
<attribute name="Configuration">
<!-- Test -->
<configuration>
<property name="mail.smtp.starttls.enable" value="true"/>
<property name="mail.smtp.host" value="smtp.gmail.com"/>
<property name="mail.smtp.user" value="***"/>
<property name="mail.smtp.password" value="***"/>
<property name="mail.smtp.port" value="587"/>
<property name="mail.smtp.auth" value="true"/>
<property name="mail.debug" value="true"/>
</configuration>
</attribute>
</mbean>
</server>
但是我得到这个输出说认证失败例外:
16:29:37,562 INFO [STDOUT] 220 mx.google.com ESMTP ku7sm11540452pbc.31
16:29:37,578 INFO [STDOUT] DEBUG SMTP: connected to host "smtp.gmail.com", port
: 587
16:29:37,578 INFO [STDOUT] EHLO cl-4
16:29:38,000 INFO [STDOUT] 250-mx.google.com at your service, [101.63.150.159]
250-SIZE 35882577
250-8BITMIME
250-STARTTLS
250 ENHANCEDSTATUSCODES
16:29:38,000 INFO [STDOUT] DEBUG SMTP: Found extension "SIZE", arg "35882577"
16:29:38,000 INFO [STDOUT] DEBUG SMTP: Found extension "8BITMIME", arg ""
16:29:38,000 INFO [STDOUT] DEBUG SMTP: Found extension "STARTTLS", arg ""
16:29:38,000 INFO [STDOUT] DEBUG SMTP: Found extension "ENHANCEDSTATUSCODES", a
rg ""
16:29:38,000 INFO [STDOUT] STARTTLS
16:29:38,453 INFO [STDOUT] 220 2.0.0 Ready to start TLS
16:29:38,718 INFO [STDOUT] EHLO cl-4
16:29:40,750 INFO [STDOUT] 250-mx.google.com at your service, [101.63.150.159]
250-SIZE 35882577
250-8BITMIME
250-AUTH LOGIN PLAIN XOAUTH
250 ENHANCEDSTATUSCODES
16:29:40,750 INFO [STDOUT] DEBUG SMTP: Found extension "SIZE", arg "35882577"
16:29:40,765 INFO [STDOUT] DEBUG SMTP: Found extension "8BITMIME", arg ""
16:29:40,765 INFO [STDOUT] DEBUG SMTP: Found extension "AUTH", arg "LOGIN PLAIN
XOAUTH"
16:29:40,765 INFO [STDOUT] DEBUG SMTP: Found extension "ENHANCEDSTATUSCODES", a
rg ""
16:29:40,765 INFO [STDOUT] DEBUG SMTP: Attempt to authenticate
16:29:40,765 INFO [STDOUT] AUTH LOGIN
16:29:41,187 INFO [STDOUT] 334 VXNlcm5hbWU6
16:29:41,187 INFO [STDOUT] bm9b2R5
16:29:41,625 INFO [STDOUT] 34 UGFzc3dvcmQ6
16:29:41,625 INFO [STDOUT] cFzc3dvcmQ=
16:29:42,062 INFO [STDOUT] 535-5.7.1 Username and Password not accepted. Learn
more at
535 5.7.1 http://support.google.com/mail/bin/answer.py?answer=14257 ku7sm1154045
2pbc.31
16:29:42,062 INFO [STDOUT] in sendmail1 javax.mail.AuthenticationFailedExceptio
n
我搜索了这个问题并找到了this链接。它建议应该使用Authenticator。但问题是在链接中代码不使用来自mail-service.xml
文件的会话。一切都在程序本身硬编码。从mail-service.xml
获取会话时,我应该如何使用此身份验证器?
的修改
我将“mail.smtp.user”和“mail.smtp.password”的值分别添加到mail-service.xml文件中的user和password属性中。它开始工作了。
<server>
<!-- ==================================================================== -->
<!-- Mail Connection Factory -->
<!-- ==================================================================== -->
<mbean code="org.jboss.mail.MailService"
name="jboss:service=Mail">
<attribute name="JNDIName">java:/Mail</attribute>
<attribute name="User">***</attribute>
<attribute name="Password">***</attribute>
<attribute name="Configuration">
<!-- Test -->
<configuration>
<property name="mail.smtp.starttls.enable" value="true"/>
<property name="mail.smtp.host" value="smtp.gmail.com"/>
<property name="mail.smtp.user" value="***"/>
<property name="mail.smtp.password" value="***"/>
<property name="mail.smtp.port" value="587"/>
<property name="mail.smtp.auth" value="true"/>
<property name="mail.debug" value="true"/>
</configuration>
</attribute>
</mbean>
</server><br>
但我已经在“mail.smtp.user”和“mail.smtp.password”值中提供了用户名和密码。为什么它不能从那里读取它?那是为了这个目的,对吗?
答案 0 :(得分:0)
理想情况下,JBoss会设置Session来为您进行身份验证,但如果这不起作用,您可以使用Transport.connect方法指定用户名和密码。有关示例,请参阅JavaMail FAQ。
答案 1 :(得分:0)
mail.smtp.password是否仍然是有效的配置属性?我知道旧版本的文档有它,但它似乎已从http://javamail.kenai.com/nonav/javadocs/com/sun/mail/smtp/package-summary.html中删除。我认为当它被删除时,大多数用于设置管理和认证的JavaMail会话的文档都停止工作。
答案 2 :(得分:0)
在服务器
中的mail-service.xml中尝试此操作<?xml version="1.0" encoding="UTF-8"?>
<!-- $Id: mail-service.xml 62350 2007-04-15 16:50:12Z dimitris@jboss.org $ -->
<server>
<!-- ================================================== -->
<!-- Mail Connection Factory -->
<!-- ============================================== -->
<mbean code="org.jboss.mail.MailService"
name="jboss:service=Mail">
<attribute name="JNDIName">java:/Mail</attribute>
<attribute name="User">type sender mail id here</attribute>
<attribute name="Password">type password</attribute>
<attribute name="Configuration">
<!-- A test configuration -->
<configuration>
<property name="mail.smtp.auth" value="true"/>
<property name="mail.smtp.starttls.enable" value="true"/>
<property name="mail.smtp.socketFactory.class" value="javax.net.ssl.SSLSocketFactory"/>
<!-- Change to your mail server prototocol -->
<property name="mail.store.protocol" value="pop3"/>
<property name="mail.transport.protocol" value="smtp"/>
<!-- Change to the user who will receive mail -->
<property name="mail.user" value="nobody"/>
<!-- Change to the SMTP gateway server -->
<property name="mail.smtp.host" value="smtp.gmail.com"/>
<!-- The mail server port -->
<property name="mail.smtp.port" value="465"/>
<!-- Change to the address mail will be from -->
<property name="mail.from" value=""/>
<!-- Enable debugging output from the javamail classes -->
<property name="mail.debug" value="false"/>
</configuration>
</attribute>
<depends>jboss:service=Naming</depends>
</mbean>
</server>