From 49ab21e3d9f10c123eb83ef25f730cf053e6222b Mon Sep 17 00:00:00 2001 From: Axel Morawietz Date: Mon, 26 Apr 2021 18:52:54 -0700 Subject: [PATCH] imap: display quota information Show response to "GETQUOTAROOT INBOX" command. Closes #6973 --- lib/imap.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/imap.c b/lib/imap.c index e1704b299b..bea964f79a 100644 --- a/lib/imap.c +++ b/lib/imap.c @@ -297,6 +297,7 @@ static bool imap_endofresp(struct Curl_easy *data, struct connectdata *conn, !strcasecompare(imap->custom, "EXPUNGE") && !strcasecompare(imap->custom, "LSUB") && !strcasecompare(imap->custom, "UID") && + !strcasecompare(imap->custom, "GETQUOTAROOT") && !strcasecompare(imap->custom, "NOOP"))) return FALSE; break; -- 2.47.3