0
|
1 <?php |
|
2 $config = array( |
|
3 'ircd' => array( |
|
4 'host' => '127.0.0.1', |
|
5 'port' => 6667, |
|
6 'password' => 'yoursecretpassword', |
|
7 'name' => 'UDPMSG3.Mynet.org', |
|
8 'desc' => 'UDPMSG3 gateway', |
|
9 'nick_format' => 'prefix', |
|
10 'nick_in_use' => '', |
|
11 'nick_prefix' => 'UDPMSG\\', |
|
12 'bot_nick' => 'UDPMSG', |
|
13 ), |
|
14 'udpmsg' => array( |
|
15 'host' => '127.0.0.1', |
|
16 'port' => 15387, |
|
17 'timeout_implicit' => 600, |
|
18 'timeout_explicit' => 3600, |
|
19 'send_alive' => 1800, |
|
20 'netname' => 'Mynet', |
|
21 ), |
|
22 'channels' => array( |
|
23 '#anonet' => 'chat/anonet', |
|
24 ), |
|
25 ); |
|
26 |
|
27 if (!defined('CONFIGFILE')) define('CONFIGFILE', __FILE__); |
|
28 if (!defined('APP_LOADED')) include './unrealircdlink.php'; |