From 938379d6d7f03747c8d7aeac4be534c9e20cfd05 Mon Sep 17 00:00:00 2001 From: Mroik Date: Mon, 29 Jun 2026 18:19:41 +0200 Subject: Implement SMTP client This is used to forward requests to the main MTA to send emails to the subscribers of the mailing list. Signed-off-by: Mroik --- src/main.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index 20ace78..dde0721 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,6 +1,7 @@ mod database; mod model; mod process_mail; +mod smtp_client; mod smtp_server; fn main() { -- cgit v1.3.1