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