aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_auth_internal_plain.lua
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/mod_auth_internal_plain.lua')
-rw-r--r--plugins/mod_auth_internal_plain.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_auth_internal_plain.lua b/plugins/mod_auth_internal_plain.lua
index 7705cb66..b7723dd7 100644
--- a/plugins/mod_auth_internal_plain.lua
+++ b/plugins/mod_auth_internal_plain.lua
@@ -15,7 +15,7 @@ local log = module._log;
local host = module.host;
-- define auth provider
-local provider = { name = "internal_plain" };
+local provider = {};
log("debug", "initializing internal_plain authentication provider for host '%s'", host);
function provider.test_password(username, password)
@@ -78,5 +78,5 @@ function provider.get_sasl_handler()
return new_sasl(host, getpass_authentication_profile);
end
-module:add_item("auth-provider", provider);
+module:provides("auth", provider);