-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.json
65 lines (65 loc) · 1.69 KB
/
config.json
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
54
55
56
57
58
59
60
61
62
63
64
65
{
"elternportal": {
"url": "https://SCHOOL.eltern-portal.org/",
"user": "EMAIL ADDRESS FOR LOGIN",
"pass": "PASSWORD",
"tag": "SHORT NAME IN EMAIL SENDER AND CALENDAR EVENTS",
"eventLookaheadDays": 7,
"messageSizeLimit": 512,
"timeoutSeconds": 0,
"fileDownloadWaitSeconds": 0.5,
"recipients": {
"*": ["PARENT 1 EMAIL ADDRESS", "PARENT 2 EMAIL ADDRESS ETC."],
"lehrerkommunikation": [],
"elternbriefe": [],
"schwarzesbrett": [],
"vertretungsplan": [],
"termine": []
}
},
"schulmanager": {
"user": "EMAIL ADDRESS FOR LOGIN",
"pass": "PASSWORD",
"tag": "SHORT NAME IN EMAIL SENDER",
"timeoutSeconds": 60,
"recipients": {
"*": ["PARENT 1 EMAIL ADDRESS", "PARENT 2 EMAIL ADDRESS ETC."],
"elternbriefe": []
}
},
"smtp": {
"host": "YOUR SMTP SERVER",
"port": 465,
"secure": true,
"auth": {
"user": "YOUR SMTP USERNAME",
"pass": "YOUR SMTP PASSWORD"
}
},
"imap": {
"host": "YOUR IMAP SERVER",
"port": 993,
"secure": true,
"auth": {
"user": "YOUR IMAP USERNAME",
"pass": "YOUR IMAP PASSWORD"
}
},
"options": {
"customBrowserExecutable": "",
"adminAddress": "PARENT 1 EMAIL ADDRESS",
"useBcc": false,
"incomingEmail": {
"enabled": true,
"forwardingAddress": "IMAP EMAIL ADDRESS",
"allowForwardingFrom": ["PARENT 1 EMAIL ADDRESS", "PARENT 2 EMAIL ADDRESS ETC."]
},
"checkIntervalMinutes": 30,
"smtpWaitSeconds": 5,
"statusServerPort": 1984,
"logLevel": "debug",
"once": false,
"mute": false,
"test": false
}
}