# HG changeset patch # User Matthew Wild # Date 1329056469 0 # Node ID 32177c680d2a714109a1f119a1981e495494b4be # Parent 6dc327809dfda46d9f90aeb20aa7161d82239df5# Parent 6643c9753453abb9d7cdf38b62ec68b9df4e7c4c Merge with 0.9 diff -r 6dc327809dfd -r 32177c680d2a plugins/mod_saslauth.lua --- a/plugins/mod_saslauth.lua Sat Feb 11 14:51:29 2012 +0000 +++ b/plugins/mod_saslauth.lua Sun Feb 12 14:21:09 2012 +0000 @@ -16,7 +16,6 @@ local cert_verify_identity = require "util.x509".verify_identity; -local nodeprep = require "util.encodings".stringprep.nodeprep; local usermanager_get_sasl_handler = require "core.usermanager".get_sasl_handler; local tostring = tostring; @@ -51,15 +50,14 @@ module:fire_event("authentication-failure", { session = session, condition = ret, text = err_msg }); session.sasl_handler = session.sasl_handler:clean_clone(); elseif status == "success" then - module:fire_event("authentication-success", { session = session }); - local username = nodeprep(session.sasl_handler.username); - local ok, err = sm_make_authenticated(session, session.sasl_handler.username); if ok then + module:fire_event("authentication-success", { session = session }); session.sasl_handler = nil; session:reset_stream(); else module:log("warn", "SASL succeeded but username was invalid"); + module:fire_event("authentication-failure", { session = session, condition = "not-authorized", text = err }); session.sasl_handler = session.sasl_handler:clean_clone(); return "failure", "not-authorized", "User authenticated successfully, but username was invalid"; end