LibIMAP: Add a new IMAP client and support NOOP

A large commit, but sets up the framework for how the IMAP library will
work. Right now only the NOOP command and response is supported.
This commit is contained in:
x-yl 2021-06-01 17:21:01 +04:00 committed by Ali Mohammad Pur
commit 8c6061fc4a
Notes: sideshowbarker 2024-07-18 12:25:20 +09:00
8 changed files with 644 additions and 0 deletions

View file

@ -0,0 +1,11 @@
/*
* Copyright (c) 2021, Kyle Pereira <hey@xylepereira.me>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibIMAP/Objects.h>
namespace IMAP {
}