update himalaya-lib for smtp and imap ssl option

This commit is contained in:
Clément DOUIN
2022-10-12 00:23:53 +02:00
parent 29f2bdd931
commit 98929d687b
3 changed files with 5 additions and 6 deletions
+4
View File
@@ -18,6 +18,8 @@ struct SmtpConfigDef {
pub host: String,
#[serde(rename = "smtp-port")]
pub port: u16,
#[serde(rename = "smtp-ssl")]
pub ssl: Option<bool>,
#[serde(rename = "smtp-starttls")]
pub starttls: Option<bool>,
#[serde(rename = "smtp-insecure")]
@@ -36,6 +38,8 @@ pub struct ImapConfigDef {
pub host: String,
#[serde(rename = "imap-port")]
pub port: u16,
#[serde(rename = "imap-ssl")]
pub ssl: Option<bool>,
#[serde(rename = "imap-starttls")]
pub starttls: Option<bool>,
#[serde(rename = "imap-insecure")]