mirror of
https://github.com/chatmail/core.git
synced 2026-05-19 14:56:33 +03:00
Use SMTP pipelining
This commit is contained in:
@@ -2,6 +2,9 @@
|
|||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
### Changes
|
||||||
|
- Pipeline SMTP commands #3924
|
||||||
|
|
||||||
### Fixes
|
### Fixes
|
||||||
- Securejoin: Fix adding and handling Autocrypt-Gossip headers #3914
|
- Securejoin: Fix adding and handling Autocrypt-Gossip headers #3914
|
||||||
- fix verifier-by addr was empty string intead of None #3961
|
- fix verifier-by addr was empty string intead of None #3961
|
||||||
|
|||||||
3
Cargo.lock
generated
3
Cargo.lock
generated
@@ -166,8 +166,7 @@ dependencies = [
|
|||||||
[[package]]
|
[[package]]
|
||||||
name = "async-smtp"
|
name = "async-smtp"
|
||||||
version = "0.5.0"
|
version = "0.5.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "git+https://github.com/async-email/async-smtp?branch=master#983597125fbb1b0eefd3eb5a21d917af71b2e1c3"
|
||||||
checksum = "6da21e1dd19fbad3e095ad519fb1558ab77fd82e5c4778dca8f9be0464589e1e"
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-native-tls",
|
"async-native-tls",
|
||||||
"async-trait",
|
"async-trait",
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ ansi_term = { version = "0.12.1", optional = true }
|
|||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
async-imap = { git = "https://github.com/async-email/async-imap", branch = "master", default-features = false, features = ["runtime-tokio"] }
|
async-imap = { git = "https://github.com/async-email/async-imap", branch = "master", default-features = false, features = ["runtime-tokio"] }
|
||||||
async-native-tls = { version = "0.4", default-features = false, features = ["runtime-tokio"] }
|
async-native-tls = { version = "0.4", default-features = false, features = ["runtime-tokio"] }
|
||||||
async-smtp = { version = "0.5", default-features = false, features = ["smtp-transport", "socks5", "runtime-tokio"] }
|
async-smtp = { git = "https://github.com/async-email/async-smtp", branch = "master", default-features = false, features = ["smtp-transport", "socks5", "runtime-tokio"] }
|
||||||
trust-dns-resolver = "0.22"
|
trust-dns-resolver = "0.22"
|
||||||
tokio = { version = "1", features = ["fs", "rt-multi-thread", "macros"] }
|
tokio = { version = "1", features = ["fs", "rt-multi-thread", "macros"] }
|
||||||
tokio-tar = { version = "0.3" } # TODO: integrate tokio into async-tar
|
tokio-tar = { version = "0.3" } # TODO: integrate tokio into async-tar
|
||||||
|
|||||||
Reference in New Issue
Block a user