diff configuration.js @ 51:22b06eade9a7

Fix typo error.
author Sonny Piers <sonny.piers@gmail.com>
date Mon, 21 Mar 2011 15:40:32 +0100
parents 8b20f2efb939
children 296de54c1c4b
line wrap: on
line diff
--- a/configuration.js
+++ b/configuration.js
@@ -21,14 +21,14 @@
 
 var config = exports;
 
-config.jid = 'pubsub.example.org';
-config.password = 'hellohello';
+config.jid = 'pubsub.plugsbee.com';
+config.password = 'douzeetdouzefont1212';
 config.host = 'localhost';
 config.port = 5347;
-config.superOwner = ['you@example.com'];
+config.superOwner = ['sonny@plugsbee.com'];
 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 = [/(.*)/];
 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';