goguerrilla.conf.sample 1.2 KB

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