1db9dbe390 2024-11-28 1: //! Simple SMTP-to-Telegram gateway. Can parse email and send them as telegram
1db9dbe390 2024-11-28 2: //! messages to specified chats, generally you specify which email address is
1db9dbe390 2024-11-28 3: //! available in configuration, everything else is sent to default address.
1db9dbe390 2024-11-28 4:
3c858ed7c4 2026-07-31 5: use async_compat::Compat;
3c858ed7c4 2026-07-31 6: use stacked_errors:: Result;
3c858ed7c4 2026-07-31 7:
3c858ed7c4 2026-07-31 8: // main function stub that executes main code from lib
8ea7b79fca 2026-01-02 9: fn main () -> Result<()> {
8ea7b79fca 2026-01-02 10: smol::block_on(Compat::new(async {
cc376760fc 2026-07-31 11: smtp2tg::async_main().await
cc376760fc 2026-07-31 12: }))
7620f854a7 2024-05-21 13: }