Fixing AUTH_RATELIMIT_IP not working on imap/pop3/smtp

#2283
master
Maximilian Fischer 2 years ago
parent 0b25854de0
commit 8775dc5b15

@ -32,7 +32,7 @@ def nginx_authentication():
for key, value in headers.items():
response.headers[key] = str(value)
is_valid_user = False
if response.headers.get("Auth-User-Exists"):
if response.headers.get("Auth-User-Exists")=="True":
username = response.headers["Auth-User"]
if utils.limiter.should_rate_limit_user(username, client_ip):
# FIXME could be done before handle_authentication()

Loading…
Cancel
Save