gpt4 book ai didi

java - WAS Liberty 8.5.5.7 是否支持邮件资源配置?

转载 作者:行者123 更新时间:2023-12-01 10:52:33 25 4
gpt4 key购买 nike

我最近刚刚安装了 WAS Liberty 8.5.5.7,因为我正在为当前为 GlassFish 4 环境部署和配置的预计项目转换到 Liberty。

glassfish 项目有 <mail-resource>在应用程序用来发送外发电子邮件的域配置中进行配置。

我希望 WAS Liberty 支持这样的配置,谁能澄清一下因为我还没有找到任何这样的文档?

最佳答案

WAS Liberty 8.5.5.6 完全支持 Java EE7(包括 JavaMail 1.5)。

没有<mail-resource> WAS Liberty 中的元素(可能是一些不是规范标准的 Glassfish 特定配置元素)。

相反,一旦启用javaMail-1.5,您就可以像这样配置javaMail特点:

<mailSession    mailSessionID="examplePop3MailSession"  
jndiName="ExampleApp/POP3Servlet/exampleMailSession"
description="POP3 javax.mail.Session"
storeProtocol="pop3"
transportProtocol="smtp"
host="exampleserver.com"
user="iamanexample@example.com"
password="example"
from="smtp@testserver.com">
<property name="mail.pop3.host" value="pop3.example.com" />
<property name="mail.pop3.port" value="3110" />
</mailSession>

See official documentation from IBM on configuring Java Mail 1.5 .

关于java - WAS Liberty 8.5.5.7 是否支持邮件资源配置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33762353/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com