# HG changeset patch # User Waqas Hussain # Date 1293462921 -18000 # Node ID 4c3abf1a9b5a0ff4d9551877cc54135931f5ff0b # Parent 8f3499ae1e275a35c95206079f0476d3913676fe mod_auth_*, mod_saslauth_muc: Update SASL callbacks to take SASL handler as first argument. diff -r 8f3499ae1e27 -r 4c3abf1a9b5a mod_auth_dovecot/mod_auth_dovecot.lua --- a/mod_auth_dovecot/mod_auth_dovecot.lua Mon Dec 27 15:07:16 2010 +0000 +++ b/mod_auth_dovecot/mod_auth_dovecot.lua Mon Dec 27 20:15:21 2010 +0500 @@ -210,7 +210,7 @@ function provider.get_sasl_handler() local realm = module:get_option("sasl_realm") or module.host; local getpass_authentication_profile = { - plain_test = function(username, password, realm) + plain_test = function(sasl, username, password, realm) local prepped_username = nodeprep(username); if not prepped_username then log("debug", "NODEprep failed on username: %s", username); diff -r 8f3499ae1e27 -r 4c3abf1a9b5a mod_auth_external/mod_auth_external.lua --- a/mod_auth_external/mod_auth_external.lua Mon Dec 27 15:07:16 2010 +0000 +++ b/mod_auth_external/mod_auth_external.lua Mon Dec 27 20:15:21 2010 +0500 @@ -113,7 +113,7 @@ function provider.get_sasl_handler() local realm = module:get_option("sasl_realm") or module.host; local testpass_authentication_profile = { - plain_test = function(username, password, realm) + plain_test = function(sasl, username, password, realm) local prepped_username = nodeprep(username); if not prepped_username then log("debug", "NODEprep failed on username: %s", username); diff -r 8f3499ae1e27 -r 4c3abf1a9b5a mod_auth_ldap/mod_auth_ldap.lua --- a/mod_auth_ldap/mod_auth_ldap.lua Mon Dec 27 15:07:16 2010 +0000 +++ b/mod_auth_ldap/mod_auth_ldap.lua Mon Dec 27 20:15:21 2010 +0500 @@ -42,7 +42,7 @@ function provider.get_sasl_handler() local realm = module:get_option("sasl_realm") or module.host; local testpass_authentication_profile = { - plain_test = function(username, password, realm) + plain_test = function(sasl, username, password, realm) local prepped_username = nodeprep(username); if not prepped_username then log("debug", "NODEprep failed on username: %s", username); diff -r 8f3499ae1e27 -r 4c3abf1a9b5a mod_saslauth_muc/mod_saslauth_muc.lua --- a/mod_saslauth_muc/mod_saslauth_muc.lua Mon Dec 27 15:07:16 2010 +0000 +++ b/mod_saslauth_muc/mod_saslauth_muc.lua Mon Dec 27 20:15:21 2010 +0500 @@ -30,7 +30,7 @@ local function remove_handler_for(room, jid) if _rooms[room] then _rooms[room][jid] = nil; end end local function create_handler_for(room_jid, jid) _rooms[room_jid] = _rooms[room_jid] or {}; - _rooms[room_jid][jid] = new_sasl(module.host, { plain = function(username, realm) + _rooms[room_jid][jid] = new_sasl(module.host, { plain = function(sasl, username, realm) local muc = hosts[module.host].modules.muc; local room = muc and muc.rooms[room_jid]; local password = room and room:get_password();