-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconfig.template.json
More file actions
37 lines (37 loc) · 841 Bytes
/
config.template.json
File metadata and controls
37 lines (37 loc) · 841 Bytes
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
{ // Keep only the client configuration section that you want to use.
"imap": {
"host": "",
"port": 993,
"user": "",
"password": "",
"ssl": false,
"ca": null,
"validateCertificate": true
},
"imapSimple": {
"host": "",
"port": 993,
"user": "",
"password": "",
"validateCertificate": true
},
"folders": {
"Inbox": {
"folder": "INBOX",
"screeningFolder": "INBOX.Screened"
},
"ForScreening": "INBOX.ForScreening",
"Newsletter": "INBOX.Newsletter",
"Reference": "INBOX.Reference",
"Rejected": "INBOX.Rejected"
},
"spam": {
"isSpam": "INBOX.Junk",
"isHam": "INBOX",
"recycleBox": "INBOX.SuspectedSpam",
"trainingFrequencyMinutes": 60,
"trainingDatasetSizeLimit": 10000
},
"storageFolder": "./",
"pollFrequencySeconds": 5
}