Mercurial > hg > udpmsg3
view unrealircdlink/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 |
line wrap: on
line source
<?php $config = array( 'ircd' => array( 'host' => '127.0.0.1', 'port' => 6667, 'password' => 'yoursecretpassword', 'name' => 'UDPMSG3.Mynet.org', 'desc' => 'UDPMSG3 gateway', 'nick_format' => 'prefix', 'nick_in_use' => '', 'nick_prefix' => 'UDPMSG\\', 'bot_nick' => 'UDPMSG', ), 'udpmsg' => array( 'host' => '127.0.0.1', 'port' => 15387, 'timeout_implicit' => 600, 'timeout_explicit' => 3600, 'send_alive' => 1800, 'netname' => 'Mynet', ), 'channels' => array( '#anonet' => 'chat/anonet', ), ); if (!defined('CONFIGFILE')) define('CONFIGFILE', __FILE__); if (!defined('APP_LOADED')) include './unrealircdlink.php';