chore: sync mailcore v0.1.0-beta.1

This commit is contained in:
Eugen Kaparulin
2026-04-17 09:05:47 +03:00
parent 2a4f740cbd
commit 90c8571d26
19 changed files with 4191 additions and 0 deletions

13
mailcore/src/lib.rs Normal file
View File

@@ -0,0 +1,13 @@
#![allow(unexpected_cfgs)]
pub mod api;
pub mod dns;
pub mod imap;
pub mod mime;
pub mod secrets;
pub mod smtp;
pub mod storage;
pub mod types;
// Re-export specific items if needed
pub use types::MailServerConfig;
pub mod session_manager;