-
Notifications
You must be signed in to change notification settings - Fork 3
/
props.xml.template
57 lines (56 loc) · 1.48 KB
/
props.xml.template
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0" encoding="UTF-8"?>
<Bot>
<GithubHookUrl>domain.tld</GithubHookUrl>
<GithubHookPort>50505</GithubHookPort>
<BitLyUser></BitLyUser>
<BitLyApiKey></BitLyApiKey>
<ScatsD>
<Host></Host>
<Port></Port>
</ScatsD>
<Nicks>
<Nick>botnick1</Nick>
<Nick>botnick2</Nick>
</Nicks>
<InterfaceHost>example.com</InterfaceHost>
<Servers>
<Server>server1</Server>
<Server>server2</Server>
<!-- Add more servers to the *same* network here in case the first one(s) are down -->
</Servers>
<Channels>
<Channel chan="#chan1">
<!-- optional: if this tag is not present, no authentication is used -->
<GithubHook>
<Username>user</Username>
<Password>pass</Password>
</GithubHook>
<Modules>
<Upload>
<UploadDir>/path/to/uploads/</UploadDir>
<PublicURL>http://url/to/uploads/</PublicURL>
</Upload>
<Operator>
<Nick>operatornick1</Nick>
<Nick>operatornick2</Nick>
</Operator>
</Modules>
</Channel>
<Channel chan="#chan2">
<Modules>
<Upload>
<UploadDir>/path/to/uploads/</UploadDir>
<PublicURL>http://url/to/uploads/</PublicURL>
</Upload>
<Operator>
<Nick>operatornick1</Nick>
<Nick>operatornick2</Nick>
</Operator>
</Modules>
</Channel>
</Channels>
<Database>
<File>grouphugs.db</File>
<Schema>schema.sql</Schema>
</Database>
</Bot>