Return OK after a successful ManageSieve SASL authentication flow (fixes #187)

This commit is contained in:
mdecimus
2024-06-13 19:30:19 +01:00
parent 835c7d8c30
commit eefdee0361
3 changed files with 4 additions and 2 deletions

View File

@@ -48,6 +48,7 @@ pub async fn test() {
sieve
.send("AUTHENTICATE \"PLAIN\" \"AGpkb2VAZXhhbXBsZS5jb20Ac2VjcmV0\"")
.await;
sieve.assert_read(ResponseType::Ok).await;
sieve
.assert_read(ResponseType::Ok)
.await