IMAP commands append, close, copy, move, enable, expunge, login, logout, namespace and select implemented.

This commit is contained in:
Me
2023-06-27 18:28:07 +02:00
parent 0cd010f8ec
commit 34e21ef03f
37 changed files with 1972 additions and 479 deletions

View File

@@ -32,6 +32,13 @@ use utils::{
enable_tracing, wait_for_shutdown, UnwrapFailure,
};
#[cfg(not(target_env = "msvc"))]
use jemallocator::Jemalloc;
#[cfg(not(target_env = "msvc"))]
#[global_allocator]
static GLOBAL: Jemalloc = Jemalloc;
#[tokio::main]
async fn main() -> std::io::Result<()> {
let config = Config::init();