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 98dd194dca Parse the timestamp correctly
The timestamp comes from OpenBSD's struct timeval, which defines the
number of seconds as a time_t (i64) and the number of micro-seconds as a
suseconds_t (long, hence i64 too). They are separated by a dot.
https://man.openbsd.org/gettimeofday.2
2019-01-05 13:02:20 +01:00
examples Add the first draft of an event handler system 2019-01-05 13:00:09 +01:00
src Parse the timestamp correctly 2019-01-05 13:02:20 +01:00
.gitignore First commit 2018-12-26 10:27:46 +01:00
Cargo.toml Add proper logging 2018-12-29 21:03:33 +01:00
Licence_CeCILL-B_V1-en.txt Add some metadata and release the project under the CeCILL-B license 2018-12-29 20:38:23 +01:00
Licence_CeCILL-B_V1-fr.txt Add some metadata and release the project under the CeCILL-B license 2018-12-29 20:38:23 +01:00
README.md First commit 2018-12-26 10:27:46 +01:00

Rust-OpenSMTPD

Rust binding for OpenSMTPD filters.