1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-01-18 03:21:36 +02:00

Auth-Login-Attempt is no more since we don't use nginx

This commit is contained in:
Florent Daigniere 2023-08-18 18:47:49 +02:00
parent c9eae7bfbf
commit c66934e6bf

View File

@ -28,8 +28,6 @@ def nginx_authentication():
response = flask.Response()
response.headers['Auth-Status'] = status
response.headers['Auth-Error-Code'] = code
if int(flask.request.headers('Auth-Login-Attempt',0)) < 10:
response.headers['Auth-Wait'] = '3'
return response
raw_password = urllib.parse.unquote(headers['Auth-Pass']) if 'Auth-Pass' in headers else ''
headers = nginx.handle_authentication(flask.request.headers)
@ -45,8 +43,6 @@ def nginx_authentication():
response = flask.Response()
response.headers['Auth-Status'] = status
response.headers['Auth-Error-Code'] = code
if int(flask.request.headers['Auth-Login-Attempt']) < 10:
response.headers['Auth-Wait'] = '3'
return response
is_valid_user = True
if headers.get("Auth-Status") == "OK":