From 12df485d3927711784504638130b74cdf9abed8f Mon Sep 17 00:00:00 2001 From: Vincent PARRES-GACON Date: Thu, 6 Feb 2025 11:44:57 +0100 Subject: [PATCH] Fix : Forgot issue reference link in faq.rst --- docs/faq.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/faq.rst b/docs/faq.rst index d0d2703b..9a47c6ad 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -1000,7 +1000,7 @@ MariaDB has no support for utf8mb4_0900_ai_ci which is the new default since MyS Why is Rspamd giving me an "Illegal instruction" error ? ````````````````````````````````````````````````````````` -On Linux amd64 (x84_64), if the antispam container is crashing and gives you an `Illegal instruction` error, you may have a CPU that lacks support of the ``SSE4.2`` instruction set. +On Linux amd64 (x84_64), if the antispam container is crashing and gives you an ``Illegal instruction`` error, you may have a CPU that lacks support of the ``SSE4.2`` instruction set. The more modern and FOSS ``vectorscan`` library used by rspamd superseeded the now closed source Intel ``hyperscan`` library in Alpine Linux, and since August 2024 it requires the ``SSE4.2`` instruction set to work properly. Pre-2013 Intel Atom CPUs (Like N2800 or D425), Intel pre-Nehalem architectures and AMD pre-Bulldozer architectures does not support ``SSE4.2``. @@ -1009,3 +1009,5 @@ A workaround to this issue is to use a x86_32 (or i686) version of rspamd, becau Note that this may stop working in the future, as 32-bit software support is being progressively dropped. *Issue reference:* `3713`_. + +.. _`3713`: https://github.com/Mailu/Mailu/issues/3713