Difference between revisions of "Tomcat mail configuration"
From OpenKM Documentation
(Created page with ' Category: Installation Guide') |
|||
Line 1: | Line 1: | ||
+ | |||
+ | <source lang="xml"> | ||
+ | <Resource | ||
+ | name="mail/Session" | ||
+ | type="javax.mail.Session" | ||
+ | auth="Container" | ||
+ | mail.smtp.host="mydomain IP address" | ||
+ | mail.smtp.auth="true" | ||
+ | username="my email account username" | ||
+ | password="the email account password" | ||
+ | mail.user="my email account username" | ||
+ | mail.password="the email account password" | ||
+ | mail.port="25" | ||
+ | mail.transport.protocol="smtp" | ||
+ | mail.debug="true"/> | ||
+ | </source> | ||
[[Category: Installation Guide]] | [[Category: Installation Guide]] |
Revision as of 19:20, 17 October 2012
<Resource
name="mail/Session"
type="javax.mail.Session"
auth="Container"
mail.smtp.host="mydomain IP address"
mail.smtp.auth="true"
username="my email account username"
password="the email account password"
mail.user="my email account username"
mail.password="the email account password"
mail.port="25"
mail.transport.protocol="smtp"
mail.debug="true"/>