diff options
author | x-yl <kylepereira@mail.com> | 2021-06-02 18:51:46 +0400 |
---|---|---|
committer | Ali Mohammad Pur <Ali.mpfard@gmail.com> | 2021-06-11 23:58:28 +0430 |
commit | 16995dc3d98e9d3036baae6535a0c7f2fb970d24 (patch) | |
tree | 60fed517305a7205dd874eee087466f28881f212 /Userland/Libraries/LibIMAP/Client.h | |
parent | 7021413d309953a5b399296c2de905cc55c165ed (diff) | |
download | serenity-16995dc3d98e9d3036baae6535a0c7f2fb970d24.zip |
LibIMAP: Support for APPEND
Diffstat (limited to 'Userland/Libraries/LibIMAP/Client.h')
-rw-r--r-- | Userland/Libraries/LibIMAP/Client.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibIMAP/Client.h b/Userland/Libraries/LibIMAP/Client.h index 2e79d7eb13..a1b2f46c1b 100644 --- a/Userland/Libraries/LibIMAP/Client.h +++ b/Userland/Libraries/LibIMAP/Client.h @@ -34,6 +34,7 @@ public: RefPtr<Promise<Optional<ContinueRequest>>> idle(); RefPtr<Promise<Optional<SolidResponse>>> finish_idle(); RefPtr<Promise<Optional<SolidResponse>>> status(StringView mailbox, Vector<StatusItemType> const& types); + RefPtr<Promise<Optional<SolidResponse>>> append(StringView mailbox, Message&& message, Optional<Vector<String>> flags = {}, Optional<Core::DateTime> date_time = {}); void close(); |