Mathieu Lala

Results 20 issues of Mathieu Lala

The output produced by a difference with new lines is not very clear. To reproduce : ```rs #[test] fn f() { pretty_assertions::assert_eq!("\n", "\r\n"); } ``` ```sh thread 'test::f' panicked at...

help wanted
P-medium

* [ ] port the current project to BSD * [ ] integrate the build for the BSD* system in the CI

help wanted
P-low

Following the #39 * [ ] extend the line length of the MAIL FROM command by 500 characters * [ ] handle security layer negociation * [ ] when both...

C-enhancement
P-low
A-vsl
A-protocol
A-security

The supported cipher list of `rustls` are the following For TLS1.3 ```txt TLS13_AES_256_GCM_SHA384 TLS13_AES_128_GCM_SHA256 TLS13_CHACHA20_POLY1305_SHA256 ``` For TLS1.2 ```txt TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 ``` By default all these...

C-enhancement
P-low
A-config
A-security

# Context ``` DomainKeys Identified Mail (DKIM) permits a person, role, or organization that owns the signing domain to claim some responsibility for a message by associating the domain with...

P-medium
A-protocol
A-security
C-tracking-issue

vSMTP will support logging to standard operating system. `syslog` and `tracing_journald` can be used for that. In some context, you might not want to have these feature enabled. Should I...

question
A-config
A-log

With `tracing` it is possible to change the format of the generated output. This format should be customization in the configuration

C-enhancement
A-config
A-log

Domain-based Message Authentication, Reporting, and Conformance (DMARC) [RFC 7489](https://datatracker.ietf.org/doc/html/rfc7489) # Implementation ## As a 'Mail Receiver' Add a `check_dmarc` fonction in the vsl's api (callable on stage `>=preq`). This function...

P-low