summaryrefslogtreecommitdiff
path: root/crates/jmap/src/api/http.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/jmap/src/api/http.rs')
-rw-r--r--crates/jmap/src/api/http.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/crates/jmap/src/api/http.rs b/crates/jmap/src/api/http.rs
index f00fccd7..c758fadc 100644
--- a/crates/jmap/src/api/http.rs
+++ b/crates/jmap/src/api/http.rs
@@ -885,11 +885,10 @@ impl ToRequestError for trc::Error {
trc::AuthEvent::MissingTotp => {
RequestError::blank(403, "TOTP code required", cause.message())
}
- trc::AuthEvent::TooManyAttempts | trc::AuthEvent::Banned => {
- RequestError::too_many_auth_attempts()
- }
+ trc::AuthEvent::TooManyAttempts => RequestError::too_many_auth_attempts(),
_ => RequestError::unauthorized(),
},
+ trc::EventType::Security(_) => RequestError::too_many_auth_attempts(),
trc::EventType::Resource(cause) => match cause {
trc::ResourceEvent::NotFound => RequestError::not_found(),
trc::ResourceEvent::BadParameters => RequestError::blank(