diff --git a/crates/common/src/config/jmap/settings.rs b/crates/common/src/config/jmap/settings.rs index 5a7c1a31..ae7c7298 100644 --- a/crates/common/src/config/jmap/settings.rs +++ b/crates/common/src/config/jmap/settings.rs @@ -206,9 +206,7 @@ impl JmapConfig { if config.property::("http.hsts").unwrap_or(false) { http_headers.push(( hyper::header::STRICT_TRANSPORT_SECURITY, - hyper::header::HeaderValue::from_static( - "max-age=31536000; includeSubDomains; preload", - ), + hyper::header::HeaderValue::from_static("max-age=31536000; includeSubDomains"), )); }