goguerrilla.conf.sample 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "allowed_hosts": "guerrillamail.com,guerrillamailblock.com,sharklasers.com,guerrillamail.net,guerrillamail.org"
  3. "primary_mail_host":"sharklasers.com",
  4. "verbose":false,
  5. "mysql_db":"gmail_mail",
  6. "mysql_host":"127.0.0.1:3306",
  7. "mysql_pass":"ok",
  8. "mysql_user":"gmail_mail",
  9. "mail_table":"new_mail",
  10. "redis_interface" : "127.0.0.1:6379",
  11. "redis_expire_seconds" : 3600,
  12. "save_workers_size" : 3,
  13. "pid_file" : "/var/run/go-guerrilla.pid",
  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. "log_file":"/dev/stdout"
  27. },
  28. {
  29. "is_enabled" : true,
  30. "host_name":"mail.test.com",
  31. "max_size":1000000,
  32. "private_key_file":"/path/to/pem/file/test.com.key",
  33. "public_key_file":"/path/to/pem/file/test.com.crt",
  34. "timeout":180,
  35. "listen_interface":"127.0.0.1:465",
  36. "start_tls_on":false,
  37. "tls_always_on":true,
  38. "max_clients":500,
  39. "log_file":"/dev/stdout"
  40. }
  41. ]
  42. }