mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-04-01 02:42:49 -05:00
Update src/mail.rs
This commit is contained in:
parent
30d90015d7
commit
12bc877b86
1 changed files with 4 additions and 1 deletions
|
@ -650,7 +650,10 @@ async fn send_email(address: &str, subject: &str, body_html: String, body_text:
|
|||
Some(true) => DkimSigningAlgorithm::Rsa,
|
||||
_ => DkimSigningAlgorithm::Ed25519,
|
||||
};
|
||||
let mut key = String::with_capacity(4096);
|
||||
let (algo, mut key) = match CONFIG.dkim_algo() {
|
||||
Some(true) => (DkimSigningAlgorithm::Rsa,String::with_capacity(4096)),
|
||||
_ => (DkimSigningAlgorithm::Ed25519,String::with_capacity(64)),
|
||||
};
|
||||
let sig = match std::fs::File::open(sig) {
|
||||
Ok(mut f) => {
|
||||
if let Err(e) = f.read_to_string(&mut key) {
|
||||
|
|
Loading…
Add table
Reference in a new issue