1
0

goguerrilla.conf.sample 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "log_file" : "stderr",
  3. "log_level" : "info",
  4. "allowed_hosts": [
  5. "guerrillamail.com",
  6. "guerrillamailblock.com",
  7. "sharklasers.com",
  8. "guerrillamail.net",
  9. "guerrillamail.org"
  10. ],
  11. "pid_file" : "/var/run/go-guerrilla.pid",
  12. "backend_config": {
  13. "log_received_mails": true,
  14. "save_workers_size": 1,
  15. "save_process" : "HeadersParser|Header|Debugger",
  16. "primary_mail_host" : "mail.example.com"
  17. },
  18. "servers" : [
  19. {
  20. "is_enabled" : true,
  21. "host_name":"mail.test.com",
  22. "max_size": 1000000,
  23. "private_key_file":"/path/to/pem/file/test.com.key",
  24. "public_key_file":"/path/to/pem/file/test.com.crt",
  25. "timeout":180,
  26. "listen_interface":"127.0.0.1:25",
  27. "start_tls_on":true,
  28. "tls_always_on":false,
  29. "max_clients": 1000,
  30. "log_file" : "stderr"
  31. },
  32. {
  33. "is_enabled" : false,
  34. "host_name":"mail.test.com",
  35. "max_size":1000000,
  36. "private_key_file":"/path/to/pem/file/test.com.key",
  37. "public_key_file":"/path/to/pem/file/test.com.crt",
  38. "timeout":180,
  39. "listen_interface":"127.0.0.1:465",
  40. "start_tls_on":false,
  41. "tls_always_on":true,
  42. "max_clients":500,
  43. "log_file" : "stderr"
  44. }
  45. ]
  46. }