Advertisement
Guest User

Untitled

a guest
Jul 18th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.40 KB | None | 0 0
  1. ################################################################################
  2. # This file is the configuration for the the JavaMailer class.  It is used to
  3. # specify the details of the JavaMailer system properties
  4. ################################################################################
  5. #
  6. # Properties are defined but commented out indicating the default values.
  7. #
  8.  
  9. #
  10. # This property defines system sender account.
  11. #
  12. # The default setting is root@[127.0.0.1]
  13. org.opennms.core.utils.fromAddress=monitor_person@mydomail.net
  14.  
  15. #
  16. # These properties define the SMTP Host.
  17. #
  18. org.opennms.core.utils.mailHost=XXX.XXX.XXX.XXX
  19. #org.opennms.core.utils.mailer=smtpsend
  20. org.opennms.core.utils.transport=smtp
  21. #org.opennms.core.utils.debug=true
  22. org.opennms.core.utils.smtpport=25
  23. #org.opennms.core.utils.smtpssl.enable=false
  24. #org.opennms.core.utils.quitwait=true
  25. #
  26. # This property controls the use of the JMTA
  27. # if it is true, mailHost will be ignored
  28. org.opennms.core.utils.useJMTA=false
  29. #
  30. # These properties define the Mail authentication.
  31. #
  32. org.opennms.core.utils.authenticate=true
  33. org.opennms.core.utils.authenticateUser="monitor_person@mydomail.net"
  34. org.opennms.core.utils.authenticatePassword="XXXXXXXXXX"
  35. #org.opennms.core.utils.starttls.enable=false
  36.  
  37. #
  38. # These properties configure message content
  39. #
  40. org.opennms.core.utils.messageContentType=text/html
  41. org.opennms.core.utils.charset=UTF-8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement