Mercurial > prosody-modules
comparison mod_auth_external/mod_auth_external.lua @ 305:4c3abf1a9b5a
mod_auth_*, mod_saslauth_muc: Update SASL callbacks to take SASL handler as first argument.
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Mon, 27 Dec 2010 20:15:21 +0500 |
parents | 3da3d6480e65 |
children | 8e9e5c7d97ff |
comparison
equal
deleted
inserted
replaced
304:8f3499ae1e27 | 305:4c3abf1a9b5a |
---|---|
111 function provider.create_user(username, password) return nil, "Account creation/modification not available."; end | 111 function provider.create_user(username, password) return nil, "Account creation/modification not available."; end |
112 | 112 |
113 function provider.get_sasl_handler() | 113 function provider.get_sasl_handler() |
114 local realm = module:get_option("sasl_realm") or module.host; | 114 local realm = module:get_option("sasl_realm") or module.host; |
115 local testpass_authentication_profile = { | 115 local testpass_authentication_profile = { |
116 plain_test = function(username, password, realm) | 116 plain_test = function(sasl, username, password, realm) |
117 local prepped_username = nodeprep(username); | 117 local prepped_username = nodeprep(username); |
118 if not prepped_username then | 118 if not prepped_username then |
119 log("debug", "NODEprep failed on username: %s", username); | 119 log("debug", "NODEprep failed on username: %s", username); |
120 return "", nil; | 120 return "", nil; |
121 end | 121 end |