-
-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathconfig.example.toml
51 lines (38 loc) · 1.38 KB
/
config.example.toml
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
# -----------* Mode *-----------
# if true the system will use the email signal extraction method
# if false the system will use ngrok signal redirect method
mode_traditional = false
# -----------* Email Service (traditional) *-----------
email_address = "[email protected] / [email protected]"
login_password = "YourPassword"
imap_server_address = "outlook.office365.com"
imap_server_port = 993
# auto reconnect to IMAP server when disconnected
imap_auto_reconnect = true
# wait time (seconds) before reconnecting to IMAP server
imap_auto_reconnect_wait = 10
# ---------------* Network (only apply when broadcast) *---------------
proxy_url = "" # eg. http://username:[email protected]:8080
# ---------------* ngrok *---------------
ngrok_auth_token = "YourAuthToken"
# --------------* Webhook (Broadcast) *--------------
webhook_urls = [
"Webhook URL",
]
# ---------------* Telegram (Broadcast) *---------------
tg_bot_token = ""
tg_chat_id = ""
# ---------------* Dicord *---------------
discord_log = false
discord_webhook_url = ""
# ----------------* Log *----------------
# save log as a text file
log_save = true
# console log with color
log_color = true
# include the current time zone into the log
log_time_zone = false
# highlight the log with the same color with log label
log_full_color = false
# ----------------* don't touch *----------------
config_version = "1.0.2"