Advertisement
Guest User

imask

a guest
Sep 19th, 2014
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. {
  2. "logFile": "~/mylogfile",
  3.  
  4. "popPort": "110",
  5. "popUseSSL": true,
  6. "popSSLKeyFile": "~/server-key.pem",
  7. "popSSLCertFile": "~/server-cert.pem",
  8.  
  9. "accounts": {
  10. "pop_user_1_username": {
  11. "popPassword": "pop_user_1_password",
  12. "imapHost": "imap.xxx.xxx",
  13. "imapPort": 143,
  14. "imapUseSSL": false,
  15. "imapUsername": "my_email_username",
  16. "imapPassword": "my_email_password",
  17. "imapMailboxes": ["INBOX", "Some mailing list"],
  18. "imapPollIntervalSeconds": 180,
  19. "imapReadOnly": false,
  20. "imapMessageAgeLimitDays": 30
  21. },
  22. "pop_user_2_username": {
  23. "popPassword": "pop_user_2_password",
  24. "imapHost": "imap.xxx.xxx",
  25. "imapPort": 993,
  26. "imapUseSSL": true,
  27. "imapUsername": "my_email_username",
  28. "imapPassword": "my_email_password",
  29. "imapMailboxes": ["INBOX"],
  30. "imapPollIntervalSeconds": 180,
  31. "imapReadOnly": false,
  32. "imapMessageAgeLimitDays": 30
  33. },
  34. },
  35.  
  36. "webLogsUsername": "choose_a_username",
  37. "webLogsPassword": "choose_a_password",
  38. "webLogsPort": 5000,
  39. "webLogsMaxLines": 50,
  40. "webLogsSSLKeyFile": "~/server-key.pem",
  41. "webLogsSSLCertFile": "~/server-cert.pem"
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement