Advertisement
Guest User

Untitled

a guest
Jul 27th, 2016
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <tomee>
  3. <!-- see http://tomee.apache.org/containers-and-resources.html -->
  4.  
  5. <!-- activate next line to be able to deploy applications in apps -->
  6. <!-- <Deployments dir="apps" /> -->
  7. <Resource id="mail/easyMAIL" type="javax.mail.Session">
  8. <!--
  9. mail.debug=true
  10. mail.transport.protocol=smtp
  11. mail.smtp.socketFactory.class=javax.net.ssl.SSLSocketFactory
  12. mail.smtp.socketFactory.fallback=false
  13. mail.smtp.host=mailout.easydns.com
  14. mail.smtp.port=465
  15. mail.smtp.auth=true
  16. mail.smtp.user=paul@[redacted]
  17. mail.smtp.password=[redacted]
  18. mail.smtp.starttls.enable=true
  19. mail.smtp.starttls.required=true
  20. user=paul@[redacted]
  21. password=[redacted]
  22.  
  23. mail.debug=true
  24.  
  25. mail.transport.protocol=smtp
  26. mail.smtp.host=smtp.gmail.com
  27. mail.smtp.port=587
  28. mail.smtp.auth=true
  29. mail.smtp.starttls.enable=true
  30. mail.smtp.user=[redacted]@gmail.com
  31. password=[redacted]
  32.  
  33. -->
  34. mail.debug=true
  35. mail.transport.protocol=smtp
  36. mail.smtp.host=mailout.easymail.ca
  37. mail.smtp.port=587
  38. mail.smtp.auth=true
  39. mail.smtp.starttls.enable=true
  40. mail.smtp.user=paul@[redacted]
  41. password=[redacted]
  42. </Resource>
  43. <!--
  44. -->
  45. <Resource id="usqueForumsDS" type="DataSource">
  46. JdbcDriver = org.mariadb.jdbc.MariaDbDataSource
  47. JdbcUrl = jdbc:mysql://localhost:3306/usqueforumsdb
  48. UserName = usqueforums
  49. Password = [redacted]
  50. JtaManaged = true
  51. maxActive = 10
  52. maxWaitTime = 10 seconds
  53. minIdle = 3
  54. maxIdle = 10
  55. removeAbandoned = true
  56. removeAbandonedTimeout = 30
  57. logAbandoned = true
  58. validationQuery = SELECT 1
  59. </Resource>
  60. </tomee>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement