Do not return CAPABILITIES after ManageSieve AUTH=PLAIN SASL exchange (closes #548)

This commit is contained in:
mdecimus
2024-06-23 09:23:08 +02:00
parent a1aa12f165
commit e149acaa51
3 changed files with 7 additions and 9 deletions

View File

@@ -49,10 +49,10 @@ pub async fn test() {
.send("AUTHENTICATE \"PLAIN\" \"AGpkb2VAZXhhbXBsZS5jb20Ac2VjcmV0\"")
.await;
sieve.assert_read(ResponseType::Ok).await;
sieve
.assert_read(ResponseType::Ok)
.await
.assert_contains("MAXREDIRECTS");
/*sieve
.assert_read(ResponseType::Ok)
.await
.assert_contains("MAXREDIRECTS");*/
// CheckScript
sieve.send("CHECKSCRIPT \"if true { keep; }\"").await;