]> granicus.if.org Git - neomutt/commitdiff
bug: imap gmail search
authorRichard Russon <rich@flatcap.org>
Wed, 1 Nov 2017 05:13:59 +0000 (05:13 +0000)
committerRichard Russon <rich@flatcap.org>
Wed, 8 Nov 2017 12:08:27 +0000 (12:08 +0000)
The order of strings in Capabilities should match the enums in ImapCaps.

imap/command.c
imap/imap_private.h

index ebf11b1c769952e475e98aec7fb919db170cdc9d..5bccd5a746f0ce1e7b55853b410085b13dba819a 100644 (file)
 
 /**
  * Capabilities - Server capabilties strings that we understand
+ *
+ * @note This must be kept in the same order as ImapCaps.
  */
 static const char *const Capabilities[] = {
-  "IMAP4",         "IMAP4rev1",   "STATUS",         "ACL",      "NAMESPACE",
-  "AUTH=CRAM-MD5", "AUTH=GSSAPI", "AUTH=ANONYMOUS", "STARTTLS", "LOGINDISABLED",
-  "IDLE",          "SASL-IR",     "X-GM-EXT1",      "ENABLE",   NULL,
+  "IMAP4",     "IMAP4rev1",     "STATUS",      "ACL",
+  "NAMESPACE", "AUTH=CRAM-MD5", "AUTH=GSSAPI", "AUTH=ANONYMOUS",
+  "STARTTLS",  "LOGINDISABLED", "IDLE",        "SASL-IR",
+  "ENABLE",    "X-GM-EXT1",     NULL,
 };
 
 /**
index 20ae8587a44d5d547fabbed322ce0cffe95a10d3..4bc51ea5b18af8bde7d25ff825d9f31948148bb1 100644 (file)
@@ -117,6 +117,8 @@ enum ImapNamespace
 
 /**
  * enum ImapCaps - Capabilities we are interested in
+ *
+ * @note This must be kept in the same order as Capabilities.
  */
 enum ImapCaps
 {