JMAP Registry API implementation - part 10

This commit is contained in:
mdecimus
2026-03-06 19:50:10 +01:00
parent 9f9ddee965
commit d15efc6fb9
67 changed files with 2186 additions and 1879 deletions

View File

@@ -46,6 +46,7 @@ pub struct SpamFilterScore {
pub headers: String,
pub train_spam: Option<bool>,
pub score: f32,
pub is_spam: bool,
}
impl SpamFilterAnalyzeScore for Server {
@@ -184,6 +185,7 @@ impl SpamFilterAnalyzeScore for Server {
headers,
train_spam,
score: final_score,
is_spam,
})
}
}