From: Axel Morawietz Date: Tue, 27 Apr 2021 01:52:54 +0000 (-0700) Subject: imap: display quota information X-Git-Tag: curl-7_80_0~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=49ab21e3d9f10c123eb83ef25f730cf053e6222b;p=thirdparty%2Fcurl.git imap: display quota information Show response to "GETQUOTAROOT INBOX" command. Closes #6973 --- 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;