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/opensmtpd/examples/echo.rs
2019-09-18 20:43:46 +02:00

13 lines
263 B
Rust

use opensmtpd::entry::Entry;
use opensmtpd::{register_no_context, report, simple_filter};
register_no_context!();
#[report(v1, smtp_in, match(all))]
fn echo(entry: &Entry) {
log::info!("New entry: {:?}", entry);
}
fn main() {
simple_filter!([echo]);
}