From 7e24f73b2c308aac3a77a342d018d4412fb09976 Mon Sep 17 00:00:00 2001 From: Andrew Lewis Date: Fri, 12 Jul 2024 14:24:17 +0200 Subject: [PATCH] Create announce post --- _posts/2024-07-12-rspamd-3.9.0.md | 33 +++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 _posts/2024-07-12-rspamd-3.9.0.md diff --git a/_posts/2024-07-12-rspamd-3.9.0.md b/_posts/2024-07-12-rspamd-3.9.0.md new file mode 100644 index 000000000..d0664b837 --- /dev/null +++ b/_posts/2024-07-12-rspamd-3.9.0.md @@ -0,0 +1,33 @@ +--- +layout: post +title: "Rspamd 3.9.0 has been released" +categories: announce +--- + +Today we have released Rspamd 3.9.0 featuring many new features & fixes, the most important of which are highlighted below. Refer to the [migration notes]({{ site.baseurl }}/doc/tutorials/migration.html) for an overview of potentially-breaking changes only. + +## Improvements to Bayes configuration + +Rspamd now uses a reduced window size of 2 words by default; this change does not require statistics to be retrained. In testing this reduced window size has produced the same or better results with better performance & lower storage requirements. The new `rspamadm classifier_test` utility could be used for your own experiments. + +## New GPT module + +This release provides a module Rspamd for using LLMs for text classification, you could read more about it in a [dedicated blog post]({{ site.baseurl }}/misc/2024/07/03/gpt.html). + +## Improvements to `known_senders` & `replies` modules + +These release includes enhancements to the `known_senders` and `replies` modules enabling them to collectively flag verified user contacts, refer to documentation of these modules for more detail. + +## Dynamic multipliers for ratelimits are now disabled by default + +To prevent likely confusion, dynamic ratelimits are now disabled by default and must be configured explicitly, refer to the migration notes for details how. + +## Various bugfixes & new features + +* Reworked `grow_factor` to work in an orderly fashion +* Fixed `SUBJ_ALL_CAPS` for unicase scripts by `@ikedas` +* Fixed relearning of bayes messages by `@aduernberger` +* Fixed retrieving word count in antivirus module by `@PxPert` +* Improvements for rules by `@twesterhever` and `@ishisora` + +Thank you to everyone who contributed.