0
Fork 0
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:
DorianCoding 2025-02-21 22:23:18 +01:00 committed by GitHub
parent 30d90015d7
commit 12bc877b86
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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) {