1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-03-05 14:55:20 +02:00

Initialize user_email in all cases

This commit is contained in:
Florent Daigniere 2021-10-16 09:29:17 +02:00
parent 7d56ed3b70
commit 57b0dd490c

View File

@ -89,6 +89,7 @@ def handle_authentication(headers):
# we need to manually decode.
raw_user_email = urllib.parse.unquote(headers["Auth-User"])
raw_password = urllib.parse.unquote(headers["Auth-Pass"])
user_email = 'invalid'
try:
user_email = raw_user_email.encode("iso8859-1").decode("utf8")
password = raw_password.encode("iso8859-1").decode("utf8")