forked from micolous/ircbots
-
Notifications
You must be signed in to change notification settings - Fork 1
/
linkbot.example.ini
40 lines (34 loc) · 1.31 KB
/
linkbot.example.ini
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
[linkbot]
; You can define another repository for your code and name of the bot.
; The git version string will be appended to this.
;version = regexbot; https://github.com/octocat/ircbots/
[linkbot1]
; The server to connect to.
server = localhost
; The port to connect on.
port = 6667
; The nickname to use.
nick = linkbot1
; The channel to use
channel = #test1
; NickServ password
;nickserv_pass = password
;; OTHER OPTIONS
; Controls how long to wait after the last message before pulling the next one
; out of the queue. Defaults to 1 second. This is here for flood control.
process_every = 1
; Maximum message length. Defaults to 512 bytes. Note that this is for
; messages relayed from the other network TO this one, so you can define them
; differently. Long messages will be truncated.
max_message_length = 512
; The maximum amount of messages to keep in the internal stack. More messages
; mean more memory usage. If the message limit has been exceeded, the message
; will be simply dropped. This enables flood control.
max_messages = 25
[linkbot2]
; Minimal configuration. Note that you can set the same options here as you can
; linkbot1. Changes in the config on linkbot1 do not apply to linkbot2 and
; vice versa -- default values are used if none is provided.
server = localhost
nick = linkbot2
channel = #test2