995c0c35c1
The simple_filter macro must accept the two different levels of contexts. In the same way, it should also accept the log level, and therefore replace the now removed simple_filter_log_level macro.
19 lines
391 B
Rust
19 lines
391 B
Rust
use log;
|
|
use opensmtpd::entry::Entry;
|
|
use opensmtpd::{report, simple_filter};
|
|
|
|
#[derive(Clone, Default)]
|
|
struct MyContext {
|
|
nb: usize,
|
|
}
|
|
|
|
#[report(v1, smtp_in, match(all))]
|
|
fn on_report(ctx: &mut MyContext, entry: &Entry) {
|
|
ctx.nb += 1;
|
|
log::info!("Event received: {}, {}", entry.get_session_id(), ctx.nb);
|
|
Ok(())
|
|
}
|
|
|
|
fn main() {
|
|
simple_filter!(MyContext, [on_report]);
|
|
}
|