comparison singlerelay/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 ),
8 'irc' => array(
9 'host' => '127.0.0.1',
10 'port' => 6667,
11 'nick' => 'Relay',
12 'ident' => 'relay',
13 'realname' => 'Relay bot',
14 ),
15 'channels' => array(
16 '#anonet' => 'chat/anonet',
17 ),
18 );
19
20 include './singlerelay.php';