Add missing LIST-STATUS from RFC-5819 (closes #816)
Some checks failed
trivy / Check (push) Failing after -9m26s

This commit is contained in:
mdecimus 2024-09-27 19:10:43 +02:00
parent 131bca1dfd
commit 7528715c2d

View file

@ -34,6 +34,7 @@ pub enum Capability {
Sort,
Thread, //THREAD=REFERENCES
ListExtended, //LIST-EXTENDED
ListStatus, //LIST-STATUS
ESort,
SortDisplay, //SORT=DISPLAY
SpecialUse, //SPECIAL-USE
@ -86,6 +87,7 @@ impl Capability {
Capability::Sort => b"SORT",
Capability::Thread => b"THREAD=REFERENCES",
Capability::ListExtended => b"LIST-EXTENDED",
Capability::ListStatus => b"LIST-STATUS",
Capability::ESort => b"ESORT",
Capability::SortDisplay => b"SORT=DISPLAY",
Capability::SpecialUse => b"SPECIAL-USE",
@ -122,6 +124,7 @@ impl Capability {
Capability::Sort,
Capability::Thread,
Capability::ListExtended,
Capability::ListStatus,
Capability::ESort,
Capability::SortDisplay,
Capability::SpecialUse,