diff options
Diffstat (limited to 'fun/clbot/clbot.go')
-rw-r--r-- | fun/clbot/clbot.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fun/clbot/clbot.go b/fun/clbot/clbot.go index 914fa03705be..a97d28e0f73d 100644 --- a/fun/clbot/clbot.go +++ b/fun/clbot/clbot.go @@ -28,12 +28,12 @@ var ( gerritAuthUsername = flag.String("gerrit_ssh_auth_username", "", "Gerrit SSH username") gerritAuthKeyPath = flag.String("gerrit_ssh_auth_key", "", "Gerrit SSH private key path") - ircServer = flag.String("irc_server", "chat.freenode.net:7000", "IRC server to connect to") + ircServer = flag.String("irc_server", "irc.hackint.org:6697", "IRC server to connect to") ircTls = flag.Bool("irc_tls", false, "Does the server connection need TLS?") ircNick = flag.String("irc_nick", "clbot", "Nick to use when connecting to IRC") ircUser = flag.String("irc_user", "clbot", "User string to use for IRC") ircName = flag.String("irc_name", "clbot", "Name string to use for IRC") - ircChannel = flag.String("irc_channel", "##tvl", "Channel to send messages to") + ircChannel = flag.String("irc_channel", "#tvl", "Channel to send messages to") ircPassword = flag.String("irc_pass", "", "Password to use for IRC") ircSendLimit = flag.Duration("irc_send_limit", 100*time.Millisecond, "Delay between messages") ircSendBurst = flag.Int("irc_send_burst", 10, "Number of messages which can be sent in a burst") |