diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-06-04 14:33:36 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-06-04 14:33:36 +0100 |
commit | 3846f08f09defece7a04ef3e68b3843f5a206c08 (patch) | |
tree | b4f0d686a0c95e975957f9d6943ffee8826937b5 /core/modulemanager.lua | |
parent | c294b198d31be8f2f9448442aad893462ff5e1c5 (diff) | |
download | prosody-3846f08f09defece7a04ef3e68b3843f5a206c08.tar.gz prosody-3846f08f09defece7a04ef3e68b3843f5a206c08.zip |
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.
Diffstat (limited to 'core/modulemanager.lua')
-rw-r--r-- | core/modulemanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modulemanager.lua b/core/modulemanager.lua index 2847663c..8e62aecb 100644 --- a/core/modulemanager.lua +++ b/core/modulemanager.lua @@ -39,7 +39,7 @@ end 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; |