Have defaultauth load by default

Thu, 27 May 2010 09:20:08 -0400

author
Jeff Mitchell <jeff@jefferai.org>
date
Thu, 27 May 2010 09:20:08 -0400
changeset 3160
4ffb5469c1f6
parent 3159
db9def53fe9c
child 3161
3c46cb94caed

Have defaultauth load by default

core/modulemanager.lua file | annotate | diff | comparison | revisions
prosody.cfg.lua.dist file | annotate | diff | comparison | revisions
--- a/core/modulemanager.lua	Wed May 26 18:16:58 2010 -0400
+++ b/core/modulemanager.lua	Thu May 27 09:20:08 2010 -0400
@@ -39,7 +39,7 @@
 
 local array, set = require "util.array", require "util.set";
 
-local autoload_modules = {"presence", "message", "iq"};
+local autoload_modules = {"presence", "message", "iq", "defaultauth"};
 
 -- We need this to let modules access the real global namespace
 local _G = _G;
--- a/prosody.cfg.lua.dist	Wed May 26 18:16:58 2010 -0400
+++ b/prosody.cfg.lua.dist	Thu May 27 09:20:08 2010 -0400
@@ -71,6 +71,7 @@
 	-- "presence";
 	-- "message";
 	-- "iq";
+	-- "defaultauth";
 };
 
 -- Disable account creation by default, for security

mercurial