]> git.pld-linux.org Git - packages/eventum.git/commitdiff
- channel setup is now a array
authorElan Ruusamäe <glen@pld-linux.org>
Sat, 17 Sep 2005 14:31:21 +0000 (14:31 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    eventum-irc.php -> 1.5

eventum-irc.php

index ca5ae9ac795c0b36d4f316cfba81bee33d7ca7a0..73589c936a335b9be567c37024b8533a7970d80d 100644 (file)
@@ -3,11 +3,18 @@
 $irc_server_hostname = 'localhost';
 $irc_server_port = 6667;
 
-$irc_default_channel = '#issues';
-$irc_default_project = 'Default Project';
+// the following is the list of IRC channels that the bot should connect to,
+// and the associated project name
+$irc_channels = array(
+       # Project Name -> IRC Channel
+       'Default Project' => '#issues',
+);
 
 $nickname = 'EventumBOT';
 $realname = 'Eventum Issue Tracking System';
+
+// do you need a username/password to connect to this server? if
+// so, fill in the next two variables
 $username = '';
 $password = '';
 
This page took 0.08826 seconds and 4 git commands to generate.