mirror of
https://github.com/chatmail/core.git
synced 2026-05-20 15:26:30 +03:00
Merge from stable branch
This commit is contained in:
@@ -10,6 +10,15 @@
|
|||||||
## API-Changes
|
## API-Changes
|
||||||
|
|
||||||
|
|
||||||
|
## 1.107.1
|
||||||
|
|
||||||
|
### Changes
|
||||||
|
- Log server security (TLS/STARTTLS/plain) type #4005
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
- Disable SMTP pipelining #4006
|
||||||
|
|
||||||
|
|
||||||
## 1.107.0
|
## 1.107.0
|
||||||
|
|
||||||
### Changes
|
### Changes
|
||||||
|
|||||||
@@ -263,7 +263,7 @@ impl fmt::Display for LoginParam {
|
|||||||
|
|
||||||
write!(
|
write!(
|
||||||
f,
|
f,
|
||||||
"{} imap:{}:{}:{}:{}:cert_{}:{} smtp:{}:{}:{}:{}:cert_{}:{}",
|
"{} imap:{}:{}:{}:{}:{}:cert_{}:{} smtp:{}:{}:{}:{}:{}:cert_{}:{}",
|
||||||
unset_empty(&self.addr),
|
unset_empty(&self.addr),
|
||||||
unset_empty(&self.imap.user),
|
unset_empty(&self.imap.user),
|
||||||
if !self.imap.password.is_empty() {
|
if !self.imap.password.is_empty() {
|
||||||
@@ -273,6 +273,7 @@ impl fmt::Display for LoginParam {
|
|||||||
},
|
},
|
||||||
unset_empty(&self.imap.server),
|
unset_empty(&self.imap.server),
|
||||||
self.imap.port,
|
self.imap.port,
|
||||||
|
self.imap.security,
|
||||||
self.imap.certificate_checks,
|
self.imap.certificate_checks,
|
||||||
if self.imap.oauth2 {
|
if self.imap.oauth2 {
|
||||||
"OAUTH2"
|
"OAUTH2"
|
||||||
@@ -287,6 +288,7 @@ impl fmt::Display for LoginParam {
|
|||||||
},
|
},
|
||||||
unset_empty(&self.smtp.server),
|
unset_empty(&self.smtp.server),
|
||||||
self.smtp.port,
|
self.smtp.port,
|
||||||
|
self.smtp.security,
|
||||||
self.smtp.certificate_checks,
|
self.smtp.certificate_checks,
|
||||||
if self.smtp.oauth2 {
|
if self.smtp.oauth2 {
|
||||||
"OAUTH2"
|
"OAUTH2"
|
||||||
|
|||||||
Reference in New Issue
Block a user