-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmaildiranasaurus.conf.sample
49 lines (49 loc) · 1.73 KB
/
maildiranasaurus.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
47
48
49
{
"log_file" : "stderr",
"log_level" : "debug",
"pid_file" : "/tmp/go-guerrilla.pid",
"allowed_hosts": ["guerrillamail.com","guerrillamailblock.com","sharklasers.com","guerrillamail.net","guerrillamail.org"],
"backend_name" : "guerrilla-db-redis",
"backend_config" :
{
"save_processors": "HeadersParser|Debugger|Hasher|Header|MailDir",
"validate_processors" : "MailDir",
"maildir_user_map" : "test=1002:2003,guerrilla=1001:1001,flashmob=1000:1000",
"maildir_path" : "/home/[user]/Maildir",
"save_workers_size" : 1,
"primary_mail_host":"sharklasers.com",
"log_received_mails" : false
},
"servers" : [
{
"is_enabled" : true,
"host_name":"mail.test.com",
"max_size": 1000000,
"tls" : {
"private_key_file":"/path/to/pem/file/test.com.key",
"public_key_file":"/path/to/pem/file/test.com.crt",
"start_tls_on":true,
"tls_always_on":false
},
"timeout":180,
"listen_interface":"127.0.0.1:25",
"max_clients": 1000,
"log_file" : "stderr"
},
{
"is_enabled" : true,
"host_name":"mail.test.com",
"max_size":1000000,
"tls" : {
"private_key_file":"/path/to/pem/file/test.com.key",
"public_key_file":"/path/to/pem/file/test.com.crt",
"start_tls_on":false,
"tls_always_on":true
},
"timeout":180,
"listen_interface":"127.0.0.1:465",
"max_clients":500,
"log_file" : "stderr"
}
]
}