relay/config.example.py

37 lines
808 B
Python
Raw Normal View History

2024-04-04 12:37:10 +00:00
from ircrobots import SASLUserPass
2021-10-13 11:57:13 +00:00
NICKNAME = "hedyrelay"
SERVERS = {
"libera": {
2024-04-04 12:37:10 +00:00
"connection": {
"host": "irc.libera.chat", "port": 6697,
"sasl": SASLUserPass("username", "password"),
},
"chans": ["#hedy"],
2021-10-13 11:57:00 +00:00
"hidechan": True,
},
"tilde": {
2024-04-04 12:37:10 +00:00
"connection": {
"host": "irc.tilde.chat", "port": 6697,
"sasl": SASLUserPass("username", "password"),
},
2021-10-13 11:57:00 +00:00
"chans": ["##hedy"],
"hidechan": True,
},
2024-04-06 04:13:40 +00:00
"teapot": {
"connection": {
"host": "irc.teapot.chat", "port": 6697,
"sasl": SASLUserPass("username", "password"),
},
"chans": ["##hedy"],
"hidechan": True,
},
}
ADMINS = ["hedy"]
NOPING = ["hedy", "jmjl"]
log_file = "log.txt"