Diff

core/modulemanager.lua @ 3180:99be525bcfb4

Rename mod_defaultauth -> mod_auth_internal, mod_hashpassauth -> mod_auth_internal_hashed, and the providers to internal and internal_hashed respectively. Also no longer auto-load defaultauth, but instead auto-load the plugin selected for each host at startup based on the provider name.
author Matthew Wild <mwild1@gmail.com>
date Fri, 04 Jun 2010 14:33:36 +0100
parent 3165:4ffb5469c1f6
child 3433:b567ac8e2040
line wrap: on
line diff
--- a/core/modulemanager.lua	Fri Jun 04 14:08:40 2010 +0100
+++ b/core/modulemanager.lua	Fri Jun 04 14:33:36 2010 +0100
@@ -39,7 +39,7 @@
 
 local array, set = require "util.array", require "util.set";
 
-local autoload_modules = {"presence", "message", "iq", "defaultauth"};
+local autoload_modules = {"presence", "message", "iq"};
 
 -- We need this to let modules access the real global namespace
 local _G = _G;