Thanks @Diman0!

ENEEDSLEEP
master
Florent Daigniere 3 years ago
parent 974bcba5ab
commit dccd8afd51

@ -81,8 +81,8 @@ def handle_authentication(headers):
raw_password = urllib.parse.unquote(headers["Auth-Pass"]) raw_password = urllib.parse.unquote(headers["Auth-Pass"])
password = raw_password.encode("iso8859-1").decode("utf8") password = raw_password.encode("iso8859-1").decode("utf8")
ip = urllib.parse.unquote(headers["Client-Ip"]) ip = urllib.parse.unquote(headers["Client-Ip"])
port = int(urllib.parse.unquote(headers["Auth-Port"])) service_port = int(urllib.parse.unquote(headers["Auth-Port"]))
if port == 25: if service_port == 25:
return { return {
"Auth-Status": "AUTH not supported", "Auth-Status": "AUTH not supported",
"Auth-Error-Code": "502 5.5.1", "Auth-Error-Code": "502 5.5.1",

Loading…
Cancel
Save