diff options
author | Waqas Hussain <waqas20@gmail.com> | 2010-12-27 20:46:01 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2010-12-27 20:46:01 +0500 |
commit | 55357a4891877c8d19fd6116721f771d4096f414 (patch) | |
tree | 2c08a6e63915faf92ba626b66fa5f3edceb1de49 /core/usermanager.lua | |
parent | aa144af70e8b56d9d5a31de752e502aabb074fa0 (diff) | |
download | prosody-55357a4891877c8d19fd6116721f771d4096f414.tar.gz prosody-55357a4891877c8d19fd6116721f771d4096f414.zip |
usermanager: Assume authentication="anonymous" when anonymous_login=true.
Diffstat (limited to 'core/usermanager.lua')
-rw-r--r-- | core/usermanager.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/usermanager.lua b/core/usermanager.lua index 1aea0de9..2e64af8c 100644 --- a/core/usermanager.lua +++ b/core/usermanager.lua @@ -36,6 +36,7 @@ function initialize_host(host) host_session.events.add_handler("item-added/auth-provider", function (event) local provider = event.item; local auth_provider = config.get(host, "core", "authentication") or default_provider; + if config.get(host, "core", "anonymous_login") then auth_provider = "anonymous"; end -- COMPAT 0.7 if provider.name == auth_provider then host_session.users = provider; end @@ -51,6 +52,7 @@ function initialize_host(host) end); host_session.users = new_null_provider(); -- Start with the default usermanager provider local auth_provider = config.get(host, "core", "authentication") or default_provider; + if config.get(host, "core", "anonymous_login") then auth_provider = "anonymous"; end -- COMPAT 0.7 if auth_provider ~= "null" then modulemanager.load(host, "auth_"..auth_provider); end |