]> git.pld-linux.org Git - packages/eventum.git/blame - eventum-irc.php
up to 3.0.2-28-g0d12f69
[packages/eventum.git] / eventum-irc.php
CommitLineData
6f779bf8
ER
1<?php
2
1105b2cd
ER
3$irc_server_hostname = 'localhost';
4$irc_server_port = 6667;
6f779bf8 5
1c43249f
ER
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);
6f779bf8 12
1105b2cd
ER
13$nickname = 'EventumBOT';
14$realname = 'Eventum Issue Tracking System';
1c43249f
ER
15
16// do you need a username/password to connect to this server? if
17// so, fill in the next two variables
1105b2cd
ER
18$username = '';
19$password = '';
This page took 0.026394 seconds and 4 git commands to generate.