mirror of
https://github.com/chatmail/core.git
synced 2026-04-20 15:06:30 +03:00
Log server security (TLS/STARTTLS/plain) type
This commit is contained in:
@@ -9,6 +9,12 @@
|
|||||||
## API-Changes
|
## API-Changes
|
||||||
|
|
||||||
|
|
||||||
|
## 1.107.1
|
||||||
|
|
||||||
|
### Changes
|
||||||
|
- Log server security (TLS/STARTTLS/plain) type #4005
|
||||||
|
|
||||||
|
|
||||||
## 1.107.0
|
## 1.107.0
|
||||||
|
|
||||||
### Changes
|
### Changes
|
||||||
|
|||||||
@@ -264,7 +264,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() {
|
||||||
@@ -274,6 +274,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"
|
||||||
@@ -288,6 +289,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