mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
util.sasl_cyrus: Return invalid-mechanism instead of undefined-condition where appropriate
This commit is contained in:
parent
d8c2bb590c
commit
367052b111
1 changed files with 2 additions and 6 deletions
|
@ -123,16 +123,12 @@ function method:process(message)
|
||||||
return "challenge", data
|
return "challenge", data
|
||||||
elseif (err == -4) then -- SASL_NOMECH
|
elseif (err == -4) then -- SASL_NOMECH
|
||||||
log("debug", "SASL mechanism not available from remote end")
|
log("debug", "SASL mechanism not available from remote end")
|
||||||
return "failure",
|
return "failure", "invalid-mechanism", "SASL mechanism not available"
|
||||||
"undefined-condition",
|
|
||||||
"SASL mechanism not available"
|
|
||||||
elseif (err == -13) then -- SASL_BADAUTH
|
elseif (err == -13) then -- SASL_BADAUTH
|
||||||
return "failure", "not-authorized", cyrussasl.get_message( self.cyrus )
|
return "failure", "not-authorized", cyrussasl.get_message( self.cyrus )
|
||||||
else
|
else
|
||||||
log("debug", "Got SASL error condition %d", err)
|
log("debug", "Got SASL error condition %d", err)
|
||||||
return "failure",
|
return "failure", "undefined-condition", cyrussasl.get_message( self.cyrus )
|
||||||
"undefined-condition",
|
|
||||||
cyrussasl.get_message( self.cyrus )
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue