Annotation For src/main.rs
Logged in as anonymous

Origin for each line in src/main.rs from check-in f4660639ca:

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: 
f4660639ca 2026-07-31    5: use async_compat::Compat;
f4660639ca 2026-07-31    6: use stacked_errors:: Result;
f4660639ca 2026-07-31    7: 
f4660639ca 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 {
f4660639ca 2026-07-31   11: 		smtp2tg::async_main().await
f4660639ca 2026-07-31   12: 	}))
7620f854a7 2024-05-21   13: }