Imported Stalwart CLI crate.

This commit is contained in:
mdecimus
2023-07-03 18:48:43 +02:00
parent 0a8fdd9008
commit b30e022480
12 changed files with 2125 additions and 45 deletions

View File

@@ -9,7 +9,7 @@ default = ["sqlite"]
sqlite = ["store/sqlite"]
foundationdb = ["store/foundation"]
[dev-dependencies]
[dependencies]
store = { path = "../crates/store", features = ["test_mode"] }
directory = { path = "../crates/directory" }
jmap = { path = "../crates/jmap", features = ["test_mode"] }

View File

@@ -134,5 +134,5 @@ pub async fn test(imap: &mut ImapConnection, imap_check: &mut ImapConnection) {
.await;
imap.assert_read(Type::Tagged, ResponseType::Ok)
.await
.assert_contains("COUNT 10 ALL 6,4:5,1,10,3,7:8,2,9");
.assert_contains("COUNT 10 ALL 6,4:5,1,10,9,3,7:8,2");
}