-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
50 lines (50 loc) · 1.11 KB
/
config.example.json
File metadata and controls
50 lines (50 loc) · 1.11 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
{
"poll_interval": 60,
"max_retries": 3,
"log_level": "INFO",
"accounts": [
{
"name": "Gmail Work",
"email": "[email protected]",
"password": "your-app-specific-password",
"imap_host": "imap.gmail.com",
"imap_port": 993,
"use_ssl": true,
"folders": ["INBOX"],
"enabled": true,
"web_url": ""
},
{
"name": "Outlook Personal",
"email": "[email protected]",
"password": "your-password",
"imap_host": "outlook.office365.com",
"imap_port": 993,
"use_ssl": true,
"folders": ["INBOX"],
"enabled": false,
"web_url": ""
}
],
"notifiers": [
{
"type": "telegram",
"enabled": true,
"telegram": {
"bot_token": "123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11",
"chat_id": "your-chat-id",
"api_base": "https://api.telegram.org",
"timeout": 30
}
}
],
"ai": {
"enabled": false,
"provider": "openai",
"api_key": "sk-your-api-key",
"model": "gpt-4o-mini",
"base_url": null,
"default_mode": "hybrid",
"language": "auto"
}
}