diff unrealircdlink/config.php @ 0:dd81c38b513a

Initial commit
author Ivo Smits <Ivo@UCIS.nl>
date Mon, 28 Feb 2011 00:49:07 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/unrealircdlink/config.php	Mon Feb 28 00:49:07 2011 +0100
@@ -0,0 +1,28 @@
+<?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';