]> git.pld-linux.org Git - packages/eventum.git/blobdiff - eventum-irc.php
no longer uses pear Date. updated to 3.0.1-129-g03f584d
[packages/eventum.git] / eventum-irc.php
index 288742cfe0b8ee0b4e7809afba7b3818aef28f73..5839c302dbb8a6a28b93f8da27fc31dc46c5a746 100644 (file)
@@ -1,12 +1,19 @@
 <?php
 
-$irc_host = 'localhost';
-$irc_port = 6667;
+$irc_server_hostname = 'localhost';
+$irc_server_port = 6667;
 
-$irc_nick = 'EventumBot';
-$irc_realname = 'EventumBot';
-$irc_username = 'EventumBot';
+// 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',
+);
 
-$irc_default_channel = '#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.620724 seconds and 4 git commands to generate.