在JBoss AS6中我们可以配置“mail.from”,如下所示
<?xml version="1.0" encoding="UTF-8"?>
<server>
<mbean code="org.jboss.mail.MailService" name="jboss:service=Mail">
<attribute name="JNDIName">java:/TestMail</attribute>
<attribute name="User">someUsername</attribute>
<attribute name="Password">somePassword</attribute>
<attribute name="Configuration">
<!-- A test configuration -->
<configuration>
<!-- Change to your mail server prototocol -->
<property name="mail.store.protocol" value="pop3"/>
...
<!-- Change to the address mail will be from -->
<property name="mail.from" value="testuser@middlewaremagic.com"/>
<!-- Enable debugging output from the javamail classes -->
<property name="mail.debug" value="true"/>
</configuration>
</attribute>
<depends>jboss:service=Naming</depends>
</mbean>
</server>
我在哪里可以在JBoss AS7中配置它?
非常感谢!
答案 0 :(得分:0)
我认为这个问题在superuser更适合。就像一张纸条。 : - )
然而谷歌的一个简单问题给了我这个: https://issues.jboss.org/browse/AS7-1177
我认为你应该使用
<property name="mail.from">nobody@nosuchhost.nosuchdomain.com</property>
采用新的配置格式。