aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2020-01-27 22:28:52 +0000
committerMatthew Wild <mwild1@gmail.com>2020-01-27 22:28:52 +0000
commit67382277df7bbd9b286c1cdd477b15b2cfb5455d (patch)
tree263b9d0ef37db4820e8151228c398f2533c68cbc /core
parente4fad868df95526bb0637457559fca9ef80426a6 (diff)
downloadprosody-67382277df7bbd9b286c1cdd477b15b2cfb5455d.tar.gz
prosody-67382277df7bbd9b286c1cdd477b15b2cfb5455d.zip
mod_authz_internal, usermanager: Rename to mod_authz_config
Diffstat (limited to 'core')
-rw-r--r--core/usermanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/usermanager.lua b/core/usermanager.lua
index 47d157bf..4a1e18f9 100644
--- a/core/usermanager.lua
+++ b/core/usermanager.lua
@@ -56,7 +56,7 @@ local provider_mt = { __index = new_null_provider() };
local function initialize_host(host)
local host_session = hosts[host];
- local authz_provider_name = config.get(host, "authorization") or "internal";
+ local authz_provider_name = config.get(host, "authorization") or "config";
local authz_mod = modulemanager.load(host, "authz_"..authz_provider_name);
host_session.authz = authz_mod or global_authz_provider;