]> git.pld-linux.org Git - packages/eventum.git/blame_incremental - eventum-irc.php
- fix upgrade dir
[packages/eventum.git] / eventum-irc.php
... / ...
CommitLineData
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 = '';
20
21?>
This page took 0.057043 seconds and 4 git commands to generate.