forked from isomer/tinybot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtiny_settings_template.py
More file actions
27 lines (21 loc) · 858 Bytes
/
tiny_settings_template.py
File metadata and controls
27 lines (21 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import random
# irc server (servername, ip) to try connecting to
# TODO - can't figure out how to get twisted connectTCP to fall back to
# another if the first fails...
ircserver = ("eu.undernet.org", 6667)
# ircserver = ("amsterdam2.nl.eu.undernet.org", 6667)
# ircserver = ("stockholm.se.eu.undernet.org", 6667)
# ircserver = (random.choice(["london2","london"]) + ".uk.eu.undernet.org", 6667)
# what name to try to use when connected
nickname = 'tinybot-test'
# "channelname": "key" (or None)
channels = {
'tinybottest': None,
}
# a string used for logging in after connecting... eg "login username password"
x_login = None
# where to write the files, one per channel (with a trailing slash)
atomdir = "/home/alastair/"
#atomdir = "/tmp/"
# url to this directory (with a trailing slash)
atomdir_url = "http://coders.meta.net.nz/~perry/tinybot/"