diff --git a/melib/src/jmap/mod.rs b/melib/src/jmap/mod.rs index b0917ad9..05c73433 100644 --- a/melib/src/jmap/mod.rs +++ b/melib/src/jmap/mod.rs @@ -1300,6 +1300,11 @@ impl JmapType { .or_else(|_| get_conf_val!(s["server_password_command"]))?; get_conf_val!(s["danger_accept_invalid_certs"], false, "true or false")?; + get_conf_val!( + s["timeout"], + 16_u64, + "integers setting an amount of seconds (a value of zero disables the timeout)" + )?; Ok(()) } }