summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAxel Morawietz <axmo12@users.noreply.github.com>2021-04-26 18:52:54 -0700
committerDaniel Stenberg <daniel@haxx.se>2021-10-28 21:33:02 +0200
commit49ab21e3d9f10c123eb83ef25f730cf053e6222b (patch)
treec4c0e013508ec7be8aaaf632114c4ff84b7a7ceb
parent601e26b1b6507e5afeb84f1a51ce75fb4d407b15 (diff)
downloadcurl-49ab21e3d9f10c123eb83ef25f730cf053e6222b.tar.gz
imap: display quota information
Show response to "GETQUOTAROOT INBOX" command. Closes #6973
-rw-r--r--lib/imap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/imap.c b/lib/imap.c
index e1704b299..bea964f79 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;