From 2f04d24b66f8bd234341f34c3f4047d77a639532 Mon Sep 17 00:00:00 2001 From: x-yl Date: Tue, 1 Jun 2021 18:39:50 +0400 Subject: LibIMAP: Support for the LIST and SELECT commands --- Userland/Libraries/LibIMAP/Client.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Userland/Libraries/LibIMAP/Client.h') diff --git a/Userland/Libraries/LibIMAP/Client.h b/Userland/Libraries/LibIMAP/Client.h index 1481d92eb7..026173bae9 100644 --- a/Userland/Libraries/LibIMAP/Client.h +++ b/Userland/Libraries/LibIMAP/Client.h @@ -21,6 +21,9 @@ public: RefPtr>> send_command(Command&&); RefPtr>> send_simple_command(CommandType); void send_raw(StringView data); + RefPtr>> list(StringView reference_name, StringView mailbox_name); + RefPtr>> select(StringView string); + void close(); Function unrequested_response_callback; -- cgit v1.2.3