123456789101112131415161718192021222324 |
- HOST = "irc.freenode.net"
- PORT = 7000
- NICK = "ttlbot"
- IDENT = "ttlbot"
- REALNAME = "Biergaizi's titlebot"
- CHANNELS = ["#wecase", "#kneecircle", "#botwar"]
- ADMINS = ["biergaizi", "StarBrilliant"] # empty list means disable permission checking
- HEADERS = [("Accept-Charset", "utf-8, iso-8859-1"),
- ("Accept-Language", "zh-cn, zh-hans, zh-tw, zh-hant, zh, en-us, en-gb, en"),
- ("Range", "bytes=0-16383"),
- ("User-Agent", "Mozilla/5.0 (compatible; Titlebot; like IRCbot; +https://github.com/biergaizi/titlebot)"),
- ("X-Forwarded-For", "10.2.0.101"),
- ("X-moz", "prefetch"),
- ("X-Prefetch", "yes"),
- ("X-Requested-With", "Titlebot")]
- IGNORED_URLS = ["https://app.gumble.tk/img/",
- "https?:/*git.io(/|$)",
- "http://weibo.com/[0-9]+/[a-zA-Z0-9]{9}"]
- I2P_USER = ""
- I2P_PASSWORD = ""
|