You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 22, 2019. It is now read-only.
RFC 3501 defines the LSUB command (§6.3.9), and the associated LSUB response (§7.2.3, which are of identical form to LIST responses (except with s/LIST/LSUB/):
* LSUB () "." #news.comp.mail.mime
The parser currently chokes on this, as it only allows a LIST literal.
The text was updated successfully, but these errors were encountered:
* First stab at structured types (#28)
Tests currently fail due to djc/imap-proto#2.
LSUB is also broken due to djc/imap-proto#4 (but we don't have tests for
that atm).
* Also parse out RFC822 fetch responses
* Make all the things zero-copy
* Also delegate IntoIterator for ZeroCopy ref
* Fix UNSEEN and LSUB
All tests now pass
* Address @sanmai-NL comments
* Correctly handle incomplete parser responses
* No need for git dep anymore
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
RFC 3501 defines the
LSUB
command (§6.3.9), and the associatedLSUB
response (§7.2.3, which are of identical form toLIST
responses (except withs/LIST/LSUB/
):The parser currently chokes on this, as it only allows a
LIST
literal.The text was updated successfully, but these errors were encountered: