mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:27:45 +00:00
LibIMAP: Support for the FETCH command (*mostly)
This commit doesn't include support for FETCH BODY, because it's a bit big already. Rest assured, FETCH is the most complicated IMAP command, and we'll go back to simple boring ones shortly.
This commit is contained in:
parent
1e9dfdcdcc
commit
c152a9a594
6 changed files with 509 additions and 0 deletions
|
@ -60,7 +60,13 @@ private:
|
|||
|
||||
ListItem parse_list_item();
|
||||
|
||||
FetchCommand::DataItem parse_fetch_data_item();
|
||||
|
||||
FetchResponseData parse_fetch_response();
|
||||
|
||||
StringView parse_literal_string();
|
||||
Optional<Vector<Address>> parse_address_list();
|
||||
Address parse_address();
|
||||
StringView parse_astring();
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue