mirror of
https://github.com/stalwartlabs/mail-server.git
synced 2024-11-13 04:39:02 +08:00
Add missing LIST-STATUS from RFC-5819 (closes #816)
Some checks failed
trivy / Check (push) Failing after -9m26s
Some checks failed
trivy / Check (push) Failing after -9m26s
This commit is contained in:
parent
131bca1dfd
commit
7528715c2d
1 changed files with 3 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue