Skip to content

Commit 1644f90

Browse files
committed
Remove HTTP STS preload directive
1 parent 8b97317 commit 1644f90

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

crates/common/src/config/jmap/settings.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,9 +206,7 @@ impl JmapConfig {
206206
if config.property::<bool>("http.hsts").unwrap_or(false) {
207207
http_headers.push((
208208
hyper::header::STRICT_TRANSPORT_SECURITY,
209-
hyper::header::HeaderValue::from_static(
210-
"max-age=31536000; includeSubDomains; preload",
211-
),
209+
hyper::header::HeaderValue::from_static("max-age=31536000; includeSubDomains"),
212210
));
213211
}
214212

0 commit comments

Comments
 (0)