Advertisement
Guest User

Config file

a guest
May 16th, 2016
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. [emailServer_YahooMail]
  2.  
  3. host = pop.mail.yahoo.com
  4. port = 995
  5. ssl = true
  6. username = myemail@yahoo.com
  7. password = mysecretpassword
  8.  
  9. [emailServer_Gmail]
  10.  
  11. host = pop.gmail.com
  12. port = 995
  13. ssl = true
  14. username = myemail@gmail.com
  15. password = mysecretpassword
  16.  
  17. [emailServer_MyPrivateServer]
  18.  
  19. host = 10.0.0.121
  20. port = 110
  21. ssl = false
  22. username = myemail@private.local
  23. password = mysecretpassword
  24.  
  25.  
  26. [processingRoutines]
  27.  
  28. YahooMail = myproject.worker1.process_yahoo
  29. Gmail = myproject.worker2.process_gmail
  30. MyPrivateServer = myproject.worker3.process_private
  31.  
  32. [output_all]
  33.  
  34. type = email
  35. host = 10.0.0.121
  36. port = 25
  37. ssl = false
  38. username = myemail@private.local
  39. password = mysecretpassword
  40. frequency = 0 0 * * *
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement