lua_xmpp_sed_bot/config.lua

22 lines
574 B
Lua
Raw Permalink Normal View History

2024-06-01 16:46:19 -05:00
-- Main privacy bot configuration file
config = {
2024-06-01 17:26:57 -05:00
-- Log verbosity, 1 will print debug 0 will not. TODO: give more control over log output
2024-06-01 16:46:19 -05:00
verbosity = 1,
-- Bot nickname
2024-06-24 17:00:30 -05:00
name = "Sed Bot",
2024-06-01 16:46:19 -05:00
--[[
This will set the type of url to replace the service domain with. Can be:
- clearnet
- onion
- eepsite
- yggdrasil
- TODO: make it work and more types?
]]--
2024-06-01 17:26:57 -05:00
-- Reply using XEP-0461 instead of just quoting
use_reply_xep = true,
2024-06-01 16:46:19 -05:00
}
-- Load config file with private information
dofile("config_private.lua")