Hi All-
We're trying to set up the bot to connect to our private irc server, that allows only ssl connections. There was surprisingly little info on this, so thought I'd mention it. Here's a duct tape work-around for now, but it would be nice if this was better integrated into the module.
1.) Set the IRC server to "ssl://irc.servername.com". Note the leading ssl://.
2.) In bot_start.php, line 55, change TRUE to FALSE so the line reads:
$irc->setUseSockets(FALSE); // uses real sockets instead of fsock().
That should do it.
Would it make sense to have the bot_start.php detect if the server name started with "ssl://", and then adjust the setting? I haven't tried making a permanent fix yet until I at least get the bot up and running so we can really put it to use.
Thanks,
Jason
Comments
Comment #1
morbus iffCheck 6.x-dev. This option is available at admin/settings/bot.
Comment #2
morbus iffcf. http://drupal.org/cvs?commit=365178
Comment #3
morbus iffIncidentally, I would /heartily/ recommend you use -dev. That's what
Druplicon uses, and there's plenty of tasty and yummy updates in there.
Comment #4
jmarkantes commentedAwesome, thanks! I usually wouldn't use a dev system in production but will take a look.
Thanks,
Jason