Advertisement
bzqr2k

Elasticsearch for Standard Mail notification

Nov 1st, 2019
654
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. ---
  2. ## Default Elasticsearch configuration from Elasticsearch base image.
  3. ## https://github.com/elastic/elasticsearch/blob/master/distribution/docker/src/docker/config/elasticsearch.yml
  4. #
  5. cluster.name: "docker-cluster"
  6. network.host: 0.0.0.0
  7.  
  8. ## Use single node discovery in order to disable production mode and avoid bootstrap checks
  9. ## see https://www.elastic.co/guide/en/elasticsearch/reference/current/bootstrap-checks.html
  10. #
  11. discovery.type: single-node
  12.  
  13. ## X-Pack settings
  14. ## see https://www.elastic.co/guide/en/elasticsearch/reference/current/setup-xpack.html
  15. #
  16. xpack.license.self_generated.type: trial
  17. xpack.security.enabled: true
  18. xpack.monitoring.collection.enabled: true
  19. ############### email standard ##########
  20. xpack.notification.email.account:
  21. default_account:
  22. profile: standard
  23. smtp:
  24. auth: false
  25. starttls.enable: false
  26. host: smtp.dst.local
  27. port: 25
  28. # smtp_user: borgesm
  29. # password: Elastic19search
  30. ############ gmail ######################
  31. #xpack.notification.email.account:
  32. # gmail_account:
  33. # profile: gmail
  34. # smtp:
  35. # auth: true
  36. # starttls.enable: true
  37. # host: smtp.gmail.com
  38. # port: 587
  39. # user: bzqr2k@gmail.com
  40. ################### outlook ###################
  41. #xpack.notification.email.account:
  42. # outlook_account:
  43. # profile: outlook
  44. # smtp:
  45. # auth: true
  46. # starttls.enable: true
  47. # host: smtp-mail.outlook.com
  48. # port: 587
  49. # user: bzqr2k@outlook.com
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement