lua_xmpp_sed_bot/config_private_example.lua

12 lines
347 B
Lua
Raw Permalink Normal View History

2024-06-01 16:46:19 -05:00
-- JID for the bot
config.jid = "bot@server.net"
-- Bot password, stored in plaintext
config.password = "password"
-- Rooms the bot will attempt to join
config.rooms_to_join = {
-- Normal room
{jid = "room@server.net",},
-- Password protected room, password stored in plaintext
{jid = "protected@server.net", password = "pass"},
}