Mercurial > hg > udpmsg3
view multiclientrelay/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( 'udpmsg' => array( 'host' => '127.0.0.1', 'port' => 15387, 'netname' => 'MyNet', 'send_alive' => 1800, ), 'irc' => array( 'host' => '127.0.0.1', 'port' => 6667, 'nick' => 'Relay', 'ident' => 'relay', 'realname' => 'Relay bot', 'clientconnections' => 2, 'joinpartmessages' => TRUE, ), 'channels' => array( '#anonet2' => 'chat/anonet', ), ); if (!defined('CONFIGFILE')) define('CONFIGFILE', __FILE__); if (!defined('APP_LOADED')) include './multiclientrelay2.php';