2023-07-25 00:35:27 +02:00
|
|
|
# ================================== #
|
|
|
|
# WinDog multi-purpose chatbot #
|
|
|
|
# Licensed under AGPLv3 by OctoSpacc #
|
|
|
|
# ================================== #
|
|
|
|
|
2024-06-15 02:08:09 +02:00
|
|
|
# If you have modified the bot's code, you should set this
|
2024-06-17 00:32:03 +02:00
|
|
|
ModifiedSourceUrl = ""
|
2024-06-15 02:08:09 +02:00
|
|
|
|
2024-06-17 00:32:03 +02:00
|
|
|
# Only for the platforms you want to use, uncomment the below credentials and fill with your own:
|
2023-07-25 00:35:27 +02:00
|
|
|
|
2024-06-17 00:32:03 +02:00
|
|
|
# MastodonUrl = "https://mastodon.example.com"
|
|
|
|
# MastodonToken = ""
|
|
|
|
|
|
|
|
# MatrixUrl = "https://matrix.example.com"
|
|
|
|
# MatrixUsername = "username"
|
|
|
|
# MatrixPassword = "hunter2"
|
|
|
|
|
|
|
|
# TelegramToken = "1234567890:abcdefghijklmnopqrstuvwxyz123456789"
|
2023-07-25 00:35:27 +02:00
|
|
|
|
2024-06-16 01:40:30 +02:00
|
|
|
AdminIds = [ "123456789@telegram", "634314973@telegram", "admin@activitypub@mastodon.example.com", ]
|
2023-11-19 00:27:51 +01:00
|
|
|
|
2024-06-16 01:40:30 +02:00
|
|
|
DefaultLang = "en"
|
2023-07-25 00:35:27 +02:00
|
|
|
Debug = False
|
|
|
|
Dumper = False
|
2024-06-16 01:40:30 +02:00
|
|
|
CmdPrefixes = ".!/"
|
2023-07-25 00:35:27 +02:00
|
|
|
# False: ASCII output; True: ANSI Output (must be escaped)
|
2024-06-16 01:40:30 +02:00
|
|
|
ExecAllowed = {"date": False, "fortune": False, "neofetch": True, "uptime": False}
|
|
|
|
WebUserAgent = "WinDog v.Staging"
|
2023-11-18 01:27:42 +01:00
|
|
|
|
2024-06-17 00:32:03 +02:00
|
|
|
ModuleGroups = (ModuleGroups | {
|
|
|
|
"Basic": "",
|
|
|
|
"Geek": "",
|
2024-06-16 01:40:30 +02:00
|
|
|
})
|
2024-06-17 00:32:03 +02:00
|
|
|
|