Add Delivered-To headers

This commit is contained in:
Gonne 2025-03-26 07:30:12 +01:00 committed by Dennis Frieberg
parent 51416950e6
commit ecc88b5539
Signed by: nerf
SSH key fingerprint: SHA256:zvrU0EwwaNK65M+AqL9IOTRawFq0JZ8QXBASxxGpxmg

View file

@ -134,7 +134,7 @@ where
/// Addresses are sorted according to the order on `OrdEmailAddress`.
pub fn generate_sieve_script(redirects: AliasMap) -> String {
let mut script: String =
"require [\"variables\", \"copy\", \"vnd.stalwart.expressions\", \"envelope\"];
"require [\"variables\", \"copy\", \"vnd.stalwart.expressions\", \"envelope\", \"editheader\"];
let \"i\" \"0\";
while \"i < count(envelope.to)\" {
@ -145,19 +145,23 @@ while \"i < count(envelope.to)\" {
script += format!(
// inspired by https://github.com/stalwartlabs/mail-server/issues/916#issuecomment-2474844389
" if eval \"eq_ignore_case(envelope.to[i], '{}')\" {{
addheader \"Delivered-To\" \"{}\";
{}
deleteheader :index 1 :is \"Delivered-To\" \"{}\";
let \"redirected\" \"true\";
}}
",
redirect.0,
redirect.0,
{
let mut subscript: String = String::new();
destinations.sort();
for destination in destinations.iter() {
subscript += format!(" redirect :copy \"{}\";", destination.0).as_str();
subscript += format!(" redirect :copy \"{}\";\n", destination.0).as_str();
}
subscript
}
},
redirect.0
)
.as_str();
}