relay/config.example.py

37 lines
808 B
Python

from ircrobots import SASLUserPass
NICKNAME = "hedyrelay"
SERVERS = {
"libera": {
"connection": {
"host": "irc.libera.chat", "port": 6697,
"sasl": SASLUserPass("username", "password"),
},
"chans": ["#hedy"],
"hidechan": True,
},
"tilde": {
"connection": {
"host": "irc.tilde.chat", "port": 6697,
"sasl": SASLUserPass("username", "password"),
},
"chans": ["##hedy"],
"hidechan": True,
},
"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"