1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:38:10 +00:00
serenity/Userland/Libraries/LibIMAP
Linus Groh 66e47d05c5 LibIMAP: Parse OK [CLOSED]
In my case the mail server responded with the following after selecting
a mailbox (in the Mail application):

    * OK [CLOSED] Previous mailbox closed.
    * FLAGS (\Answered \Flagged ...)
    * OK [PERMANENTFLAGS (\Answered \Flagged ... \*)] Flags permitted.
    * 2 EXISTS
    * 0 RECENT
    * OK [UIDVALIDITY 1234567890] UIDs valid
    * OK [UIDNEXT 12345] Predicted next UID
    * OK [HIGHESTMODSEQ 123456] Highest
    A6 OK [READ-WRITE] Select completed (0.002 secs).

The [CLOSED] part threw the parser off as it was expecting a space after
the atom following the opening bracket, which would actually lead to a
crash of Mail (AK::Optional::value() without value).
2021-07-24 22:22:41 +01:00
..
Client.cpp LibIMAP: Add a bunch of serialize_astring in command construction 2021-07-24 19:03:43 +01:00
Client.h LibCore+LibIMAP: Move Promise to LibCore 2021-07-15 11:11:14 +02:00
CMakeLists.txt LibIMAP: Add quoted printable decoder 2021-07-24 20:11:28 +04:30
Objects.cpp LibIMAP: Support for the SEARCH command 2021-06-11 23:58:28 +04:30
Objects.h LibIMAP: Make Section::parts unsigned 2021-07-24 20:11:28 +04:30
Parser.cpp LibIMAP: Parse OK [CLOSED] 2021-07-24 22:22:41 +01:00
Parser.h LibIMAP: Add and use Parser::consume_until_end_of_line() 2021-07-24 22:22:41 +01:00
QuotedPrintable.cpp LibIMAP: Add quoted printable decoder 2021-07-24 20:11:28 +04:30
QuotedPrintable.h LibIMAP: Add quoted printable decoder 2021-07-24 20:11:28 +04:30