goguerrilla.conf.sample 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. },
  15. "servers" : [
  16. {
  17. "is_enabled" : true,
  18. "host_name":"mail.test.com",
  19. "max_size": 1000000,
  20. "private_key_file":"/path/to/pem/file/test.com.key",
  21. "public_key_file":"/path/to/pem/file/test.com.crt",
  22. "timeout":180,
  23. "listen_interface":"127.0.0.1:25",
  24. "start_tls_on":true,
  25. "tls_always_on":false,
  26. "max_clients": 1000,
  27. "log_file" : "stderr"
  28. },
  29. {
  30. "is_enabled" : true,
  31. "host_name":"mail.test.com",
  32. "max_size":1000000,
  33. "private_key_file":"/path/to/pem/file/test.com.key",
  34. "public_key_file":"/path/to/pem/file/test.com.crt",
  35. "timeout":180,
  36. "listen_interface":"127.0.0.1:465",
  37. "start_tls_on":false,
  38. "tls_always_on":true,
  39. "max_clients":500,
  40. "log_file" : "stderr"
  41. }
  42. ]
  43. }