]> git.pld-linux.org Git - packages/eventum.git/blob - eventum-irc.php
adapter
[packages/eventum.git] / eventum-irc.php
1 <?php
2
3 $irc_server_hostname = 'localhost';
4 $irc_server_port = 6667;
5
6 // the following is the list of IRC channels that the bot should connect to,
7 // and the associated project name
8 $irc_channels = array(
9         # Project Name -> IRC Channel
10         'Default Project' => '#issues',
11 );
12
13 $nickname = 'EventumBOT';
14 $realname = 'Eventum Issue Tracking System';
15
16 // do you need a username/password to connect to this server? if
17 // so, fill in the next two variables
18 $username = '';
19 $password = '';
This page took 0.067793 seconds and 3 git commands to generate.