Changeset

5117:2c7e1ce8f482

mod_auth_*: Use module:provides().
author Waqas Hussain <waqas20@gmail.com>
date Wed, 12 Sep 2012 21:41:51 +0500
parents 5116:5f9066db1b4d
children 5118:0dc9e6c128c3
files plugins/mod_auth_anonymous.lua plugins/mod_auth_cyrus.lua plugins/mod_auth_internal_hashed.lua plugins/mod_auth_internal_plain.lua
diffstat 4 files changed, 8 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_auth_anonymous.lua	Wed Sep 12 21:40:00 2012 +0500
+++ b/plugins/mod_auth_anonymous.lua	Wed Sep 12 21:41:51 2012 +0500
@@ -10,7 +10,7 @@
 local datamanager = require "util.datamanager";
 
 -- define auth provider
-local provider = { name = "anonymous" };
+local provider = {};
 
 function provider.test_password(username, password)
 	return nil, "Password based auth not supported.";
@@ -62,5 +62,5 @@
 	datamanager.remove_callback(dm_callback);
 end
 
-module:add_item("auth-provider", provider);
+module:provides("auth", provider);
 
--- a/plugins/mod_auth_cyrus.lua	Wed Sep 12 21:40:00 2012 +0500
+++ b/plugins/mod_auth_cyrus.lua	Wed Sep 12 21:41:51 2012 +0500
@@ -44,7 +44,7 @@
 local host = module.host;
 
 -- define auth provider
-local provider = { name = "cyrus" };
+local provider = {};
 log("debug", "initializing default authentication provider for host '%s'", host);
 
 function provider.test_password(username, password)
@@ -80,5 +80,5 @@
 	return handler;
 end
 
-module:add_item("auth-provider", provider);
+module:provides("auth", provider);
 
--- a/plugins/mod_auth_internal_hashed.lua	Wed Sep 12 21:40:00 2012 +0500
+++ b/plugins/mod_auth_internal_hashed.lua	Wed Sep 12 21:41:51 2012 +0500
@@ -41,7 +41,7 @@
 
 local host = module.host;
 -- define auth provider
-local provider = { name = "internal_hashed" };
+local provider = {};
 log("debug", "initializing internal_hashed authentication provider for host '%s'", host);
 
 function provider.test_password(username, password)
@@ -145,5 +145,5 @@
 	return new_sasl(host, testpass_authentication_profile);
 end
 	
-module:add_item("auth-provider", provider);
+module:provides("auth", provider);
 
--- a/plugins/mod_auth_internal_plain.lua	Wed Sep 12 21:40:00 2012 +0500
+++ b/plugins/mod_auth_internal_plain.lua	Wed Sep 12 21:41:51 2012 +0500
@@ -15,7 +15,7 @@
 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 @@
 	return new_sasl(host, getpass_authentication_profile);
 end
 	
-module:add_item("auth-provider", provider);
+module:provides("auth", provider);