comparison ircrelay/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 'nickprefix' => 'E\\',
7 'nickseparator' => '',
8 'nicknetwork' => FALSE,
9 'channels' => array(
10 'chat/anonet' => 'channel1',
11 ),
12 ),
13 'networks' => array(
14 'NET1' => array(
15 'name' => 'IRC network',
16 'server' => 'irc.example.com',
17 'port' => 6667,
18 'nick' => 'Relay',
19 'ident' => 'relay',
20 'realname' => 'Relay bot',
21 'channels' => array(
22 '#channel' => array('display' => 'NET1', 'link' => 'channel1'),
23 ),
24 ),
25 );
26
27 include './relay.php';