comparison multiclientrelay/config.php @ 0:dd81c38b513a

Initial commit
author Ivo Smits <Ivo@UCIS.nl>
date Mon, 28 Feb 2011 00:49:07 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:dd81c38b513a
1 <?php
2 $config = array(
3 'udpmsg' => array(
4 'host' => '127.0.0.1',
5 'port' => 15387,
6 'netname' => 'MyNet',
7 'send_alive' => 1800,
8 ),
9 'irc' => array(
10 'host' => '127.0.0.1',
11 'port' => 6667,
12 'nick' => 'Relay',
13 'ident' => 'relay',
14 'realname' => 'Relay bot',
15 'clientconnections' => 2,
16 'joinpartmessages' => TRUE,
17 ),
18 'channels' => array(
19 '#anonet2' => 'chat/anonet',
20 ),
21 );
22
23 if (!defined('CONFIGFILE')) define('CONFIGFILE', __FILE__);
24 if (!defined('APP_LOADED')) include './multiclientrelay2.php';