annotate singlerelay/config.php @ 1:7f01316130e8
Basic support for private messages in unrealircd proxy
author |
Ivo Smits <Ivo@UCIS.nl> |
date |
Fri, 01 Apr 2011 17:02:41 +0200 |
parents |
dd81c38b513a |
children |
|
rev |
line source |
0
|
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'; |