Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

imapd.c: move LIST-METADATA into the "standard" section of extensions #4718

Merged
merged 1 commit into from
Nov 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion imap/imapd.c
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,7 @@ static struct capa_struct base_capabilities[] = {
{ "IMAPSIEVE=", 0, /* not implemented */ { 0 } }, /* RFC 6785 */
{ "LANGUAGE", 0, /* not implemented */ { 0 } }, /* RFC 5255 */
{ "LIST-EXTENDED", CAPA_POSTAUTH, { 0 } }, /* RFC 5258 */
{ "LIST-METADATA", CAPA_POSTAUTH, { 0 } }, /* draft-ietf-extra-imap-list-metadata */
{ "LIST-MYRIGHTS", CAPA_POSTAUTH, { 0 } }, /* RFC 8440 */
{ "LIST-STATUS", CAPA_POSTAUTH, { 0 } }, /* RFC 5819 */
{ "LITERAL+", CAPA_OMNIAUTH|CAPA_REVCONFIG, /* RFC 7888 */
Expand Down Expand Up @@ -474,7 +475,6 @@ static struct capa_struct base_capabilities[] = {
{ "ANNOTATEMORE", CAPA_POSTAUTH|CAPA_CONFIG, /* draft-daboo-imap-annotatemore-08 */
{ .config = IMAPOPT_ANNOTATION_ENABLE_LEGACY_COMMANDS } },
{ "DIGEST=SHA1", CAPA_POSTAUTH, { 0 } }, /* CY */
{ "LIST-METADATA", CAPA_POSTAUTH, { 0 } }, /* draft-murchison-imap-list-metadata */
{ "MUPDATE=", CAPA_OMNIAUTH|CAPA_VALUE, /* CY */
{ .value = { "mupdate://%1$s/", .strp = &config_mupdate_server } } },
{ "NO_ATOMIC_RENAME", CAPA_POSTAUTH, { 0 } }, /* CY */
Expand Down