util.sasl.plain: Apply saslprep to stored password

Fixes something like #1560 here too.

The password sent by the user already had saslprep applied.
This commit is contained in:
Kim Alvefur 2020-05-22 21:05:45 +02:00
parent 5dd049acf0
commit a7083d1ded

View file

@ -70,7 +70,7 @@ local function plain(self, message)
if self.profile.plain then
local correct_password;
correct_password, state = self.profile.plain(self, authentication, self.realm);
correct = (correct_password == password);
correct = (saslprep(correct_password) == password);
elseif self.profile.plain_test then
correct, state = self.profile.plain_test(self, authentication, password, self.realm);
end