Updated imap defaults

This commit is contained in:
Maurus Decimus
2026-04-19 11:10:04 +02:00
parent e3399a2a22
commit 47d21dd03d
8 changed files with 8 additions and 8 deletions

4
Cargo.lock generated
View File

@@ -1879,9 +1879,9 @@ dependencies = [
[[package]]
name = "dns-update"
version = "0.2.0"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ccef4d864bf07191beab1ddaced3e108208058ba0350ce535407e2704aafcc18"
checksum = "a812298508ba41a918afcceb0a960f807480b9c9254ecf12ff299683bc4fb1bf"
dependencies = [
"aws-lc-rs",
"base64 0.22.1",

View File

@@ -20,7 +20,7 @@ mail-parser = { version = "0.11", features = ["full_encoding"] }
mail-builder = { version = "0.4" }
mail-auth = { version = "0.8" }
smtp-proto = { version = "0.2", features = ["rkyv"] }
dns-update = { version = "0.2.0" }
dns-update = { version = "0.2.1" }
calcard = { version = "0.3", features = ["rkyv"] }
ahash = { version = "0.8.2", features = ["serde"] }
parking_lot = "0.12.1"

View File

@@ -14956,7 +14956,7 @@ impl Default for Imap {
Self {
allow_plain_text_auth: false,
max_auth_failures: 3u64,
max_concurrent: Some(6u64),
max_concurrent: Some(16u64),
max_request_rate: Some(Rate {
count: 2000u64,
period: Duration::from_millis(60000),

View File

@@ -34,7 +34,7 @@ sha2 = "0.11"
reqwest = { version = "0.13", default-features = false, features = ["rustls", "http2"]}
base64 = "0.22"
compact_str = "0.9.0"
dns-update = { version = "0.2.0" }
dns-update = { version = "0.2.1" }
[dev-dependencies]

View File

@@ -46,7 +46,7 @@ impl RegistryStore {
.collect::<String>();
eprintln!();
eprintln!("════════════════════════════════════════════════════════════");
eprintln!("🔑 Stalwart bootstrap mode temporary administrator account");
eprintln!("🔑 Stalwart bootstrap mode - temporary administrator account");
eprintln!();
eprintln!(" username: admin");
eprintln!(" password: {password}");

Binary file not shown.

View File

@@ -1 +1 @@
PL8KZnGtpFbFHjUZNFp4Ety5oqiCIv7amrwZ2gnIHbA
cfUVQJSeFKFiYn3iirIvn58LaqJ3_HppFEBrqbXrr-E

View File

@@ -81,7 +81,7 @@ rkyv = { version = "0.8.10", features = ["little_endian"] }
compact_str = "0.9.0"
quick-xml = "0.39"
jmap-tools = { version = "0.1" }
dns-update = { version = "0.2.0", features = ["test_provider"] }
dns-update = { version = "0.2.1", features = ["test_provider"] }
x509-parser = "0.18"
[target.'cfg(not(target_env = "msvc"))'.dependencies]