From 25292363714384d0c43c1e7f1520e14def593d14 Mon Sep 17 00:00:00 2001 From: Fabian Frank Date: Sat, 24 Mar 2012 12:01:49 -0700 Subject: [PATCH] hubot is identifying itself as user@host to the IRC server. making the user portion configurable as HUBOT_IRC_USERNAME, since certain IRC networks require a valid username instead of the default one, which is nodebot. --- src/irc.coffee | 1 + 1 file changed, 1 insertion(+) diff --git a/src/irc.coffee b/src/irc.coffee index 8a82054..bfae6b5 100644 --- a/src/irc.coffee +++ b/src/irc.coffee @@ -44,6 +44,7 @@ class IrcBot extends Adapter usessl: process.env.HUBOT_IRC_USESSL? client_options = + userName: process.env.HUBOT_IRC_USERNAME password: options.password, debug: options.debug, port: options.port,