-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig-example.json
More file actions
53 lines (53 loc) · 1.4 KB
/
Copy pathconfig-example.json
File metadata and controls
53 lines (53 loc) · 1.4 KB
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
50
51
52
53
{
"accounts": [
{
"enabled": false,
"email": "sample@example.com",
"password": "password",
"imap": {
"server": "imap.example.com",
"port": 993,
"use_ssl": true
},
"smtp": {
"server": "smtp.example.com",
"port": 465,
"use_ssl": true,
"use_starttls": false
},
"proxy": {
"enabled": true,
"server": "127.0.0.1",
"port": 7897
},
"forward": {
"to": ["forward@example.com", "forward2@example.com"]
}
},
{
"enabled": true,
"email": "active@example.com",
"password": "password",
"imap": {
"server": "imap.active.com",
"port": 993,
"use_ssl": true
},
"smtp": {
"server": "smtp.active.com",
"port": 465,
"use_ssl": false,
"use_starttls": true
},
"proxy": {
"enabled": false,
"server": "127.0.0.1",
"port": 7897
},
"forward": {
"to": ["forward@example.com"]
}
}
],
"check_interval": 10
}