l
l
Readme shows the correct way to open files manually and wrapping them into BufReader: https://github.com/Majored/rs-async-zip/blob/527bda9d58c1ba1fa973a0faeb68dce91fa4ffe4/README.md?plain=1#L46 But there is another API `async_zip::tokio::read::fs::ZipFileReader::new` that simply opens a file without any buffering. On...
I want to produce a `multipart/report` message and set `report-type` attribute on it. However, `MultiPartKind` does not provide a "report" variant: https://docs.rs/lettre/0.11.11/lettre/message/enum.MultiPartKind.html I am trying to replace `lettre_email` 0.9 in...
I was looking at the bugreport for Silverjuke, a music player using wxWidgets, not being able to handle files contaning `:` in the filename: https://github.com/silverjuke/silverjuke/issues/112 The code uses `wxFileSystem` to...
[RFC 9149](https://www.rfc-editor.org/rfc/rfc9149.html) describes an extension to request specific number of TLS session tickets (NewSessionTicket messages) from the server. Without this extension servers have to guess how many tickets to send....
I am looking at the code around TLS session resumption. It seems that the key for ticket storage is just a server name (SNI): https://github.com/rustls/rustls/blob/828674444a3f64cd8ada3342f3c51fd686d52714/rustls/src/client/tls13.rs#L1463-L1464 What will happen if I...
Markdown writer: convert definition lists to bullet lists if `definition_lists` option is disabled
Fixes #1039
JSON-RPC: `reset_contact_encryption` API is removed. In deltachat-rpc-client API `Contact.reset_encryption` is removed. "Group tracking plugin" in legacy Python API was removed because it relied on parsing email addresses from system messages...
Based on #6918
`LoggingStream` is a wrapper for IMAP/SMTP/HTTP session streams. Originally I started building it with the idea to debug #6477 and similar issues where IMAP loop gets stuck with the hope...