diff configuration.js @ 56:99bd1d1ac071

Migration to node-xmpp, done!
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Wed, 10 Aug 2011 15:11:22 -0700
parents 296de54c1c4b
children
line wrap: on
line diff
--- a/configuration.js
+++ b/configuration.js
@@ -21,18 +21,17 @@
 
 var config = exports;
 
-config.jid = 'pubsub.example.org';
+config.jid = 'pubsub.ubuntu';
 config.password = 'hellohello';
-config.host = 'localhost';
-config.port = 5347;
-config.superOwner = ['you@example.com'];
+config.superOwner = ['you@ubuntu'];
 config.version = '0.1';
 config.os = 'GNU/Linux';
-config.allowCreateNode = [/@example\.com$/]; // value is an array of RegExp JIDs. If only super-owner should be able to create nodes, use [].
+config.allowCreateNode = [/@ubuntu$/]; // value is an array of RegExp JIDs. If only super-owner should be able to create nodes, use [].
 config.backend = 'directory'; // Put backends in “backends” directory.
 config.access = 'open'; // values include open, whitelist (by members) and authorize (owners of the node receive notification). presence and roster aren’t implemented yet.
 config.pluginsDir = 'modules';
 config.hideNonAccessibleNodes = true;
+config.debug = true;
 
 config.activated = [
 	'auto-create',