Redirect for all incoming recipients as a copy and discard original incoming mail

This way it is not saved in the catch-all account.
This commit is contained in:
Gonne 2025-03-24 11:30:29 +01:00 committed by Dennis Frieberg
parent 281642aa38
commit 51416950e6
Signed by: nerf
SSH key fingerprint: SHA256:zvrU0EwwaNK65M+AqL9IOTRawFq0JZ8QXBASxxGpxmg

View file

@ -134,24 +134,41 @@ 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\"];\n\n"
"require [\"variables\", \"copy\", \"vnd.stalwart.expressions\", \"envelope\"];
let \"i\" \"0\";
while \"i < count(envelope.to)\" {
let \"redirected\" \"false\";
"
.to_string();
for (redirect, mut destinations) in redirects {
script += format!(
// inspired by https://github.com/stalwartlabs/mail-server/issues/916#issuecomment-2474844389
"if eval \"contains_ignore_case(envelope.to, '{}')\" {{\n{}}}\n",
" if eval \"eq_ignore_case(envelope.to[i], '{}')\" {{
{}
let \"redirected\" \"true\";
}}
",
redirect.0,
{
let mut subscript: String = String::new();
destinations.sort();
for destination in destinations.iter() {
subscript += format!(" redirect :copy \"{}\";\n", destination.0).as_str();
subscript += format!(" redirect :copy \"{}\";", destination.0).as_str();
}
subscript
}
)
.as_str();
}
script += " if eval \"!redirected\" {
let \"destination\" \"envelope.to[i]\";
redirect :copy \"${destination}\";
}
";
script += " let \"i\" \"i+1\";\n";
script += "}
discard;";
script
}