45639f18c0
Threads are a bad idea because for now the filter API is not guaranteed to be state-less. The interface is now synchronous, which should be enough for most filters. The refactoring brought other changes, the most important being the concept of modular input sources and output destination and the complete rewrite of the procedural macro.
18 lines
429 B
Rust
18 lines
429 B
Rust
use opensmtpd::entry::Entry;
|
|
use opensmtpd::{report, simple_filter};
|
|
|
|
#[report(v1, smtp_in, match(all))]
|
|
fn echo_handler(entry: &Entry) -> Result<(), String> {
|
|
log::info!("TEST ENTRY: {:?}", entry);
|
|
Ok(())
|
|
}
|
|
|
|
#[report(v1, smtp_in, match(link_disconnect))]
|
|
fn test(entry: &Entry) {
|
|
log::info!("HAZ LINK DISCONNECT: {:?}", entry);
|
|
Ok(()) // TODO: REMOVE ME!
|
|
}
|
|
|
|
fn main() {
|
|
simple_filter!(echo_handler, test);
|
|
}
|