diff options
author | Tobias Markmann <tm@ayena.de> | 2009-11-19 17:17:52 +0100 |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2009-11-19 17:17:52 +0100 |
commit | b32b0e118daa6a32b464bf21e7c091041eec0dbb (patch) | |
tree | 5d5432f6b399adf0641bc3ef1577040a949968b8 /util/sasl/plain.lua | |
parent | 547b733736f76dac6fce0757ec73742377f5f99b (diff) | |
download | prosody-b32b0e118daa6a32b464bf21e7c091041eec0dbb.tar.gz prosody-b32b0e118daa6a32b464bf21e7c091041eec0dbb.zip |
Adding some human readable error messages.
Diffstat (limited to 'util/sasl/plain.lua')
-rw-r--r-- | util/sasl/plain.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/sasl/plain.lua b/util/sasl/plain.lua index 5c7ff68a..46a86bb9 100644 --- a/util/sasl/plain.lua +++ b/util/sasl/plain.lua @@ -35,7 +35,7 @@ local function plain(self, message) if (not password) or (password == "") or (not authentication) or (authentication == "") then log("debug", "Username or password violates SASLprep."); - return "failure", "malformed-request"; + return "failure", "malformed-request", "Invalid username or password."; end local correct, state = false, false; @@ -55,7 +55,7 @@ local function plain(self, message) if correct then return "success"; else - return "failure", "not-authorized"; + return "failure", "not-authorized", "Unable to authorize you with the authentication credentials you've sent."; end end |