4b1f99db7e
The main goal of events/reports is to update a context object, which will be used in filters to generate a response. It is now possible to use any object implementing both Clone and Default as a context object. It is also possible to define no context at all.
19 lines
455 B
Rust
19 lines
455 B
Rust
use env_logger::{Builder, Env};
|
|
use log::info;
|
|
use opensmtpd::{event, handlers, Entry, SmtpIn};
|
|
|
|
#[derive(Clone, Default)]
|
|
struct MyContext {
|
|
nb: usize,
|
|
}
|
|
|
|
#[event(Any)]
|
|
fn on_event(ctx: &mut MyContext, entry: &Entry) {
|
|
ctx.nb += 1;
|
|
info!("Event received: {}, {}", entry.session_id, ctx.nb);
|
|
}
|
|
|
|
fn main() {
|
|
Builder::from_env(Env::default().default_filter_or("debug")).init();
|
|
SmtpIn::new().event_handlers(handlers!(on_event)).run();
|
|
}
|