Rust interface for OpenSMTPD filters https://docs.rs/opensmtpd/latest/opensmtpd/
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.
Find a file
Rodolphe Breard 24b332c615 Refactor the reader/dispatcher
The previous design did not handled errors correctly and was kind of
spaghetti code. With the new one, the reader and the dispatcher are
clearly separated. The filter will only exit on an error from the reader
or if EOF has been reached, any other error is displayed but does not
exit the filter, which is required by the API. If the filter must exit,
all threads are gracefully stopped.
2018-12-29 20:22:37 +01:00
examples Refactor the reader/dispatcher 2018-12-29 20:22:37 +01:00
src Refactor the reader/dispatcher 2018-12-29 20:22:37 +01:00
.gitignore First commit 2018-12-26 10:27:46 +01:00
Cargo.toml Read and parse incoming entries then dispatch them into session threads 2018-12-29 16:56:56 +01:00
README.md First commit 2018-12-26 10:27:46 +01:00

Rust-OpenSMTPD

Rust binding for OpenSMTPD filters.