This repository has been archived on 2023-09-20. You can view files and clone it, but cannot push or open issues or pull requests.
rust-opensmtpd/examples/dummy.rs

15 lines
393 B
Rust
Raw Normal View History

use log::debug;
2018-12-29 21:03:33 +01:00
use env_logger::{Builder, Env};
use opensmtpd::{Entry, EventHandler, MatchEvent, SmtpIn};
fn on_event(entry: &Entry) -> bool {
debug!("Event received: {:?}", entry);
true
}
2018-12-29 21:03:33 +01:00
fn main() {
2018-12-29 21:03:33 +01:00
Builder::from_env(Env::default().default_filter_or("debug")).init();
let h = vec![EventHandler::new(MatchEvent::All, on_event)];
SmtpIn::new().event_handlers(h).run();
}