diff --git a/_locales/en/messages.json b/_locales/en/messages.json
index 15f4f918..ea758ff0 100644
--- a/_locales/en/messages.json
+++ b/_locales/en/messages.json
@@ -1098,5 +1098,13 @@
"prefs_OptionText_spamfilter_threshold_Info": {
"message": "If the value returned by the AI is above this threshold, the email will be moved to the spam folder.",
"description": ""
+ },
+ "spam_threshold_too_low": {
+ "message": "The spam threshold is too low! You will likely mark too much mails as spam!",
+ "description": ""
+ },
+ "spam_threshold_zero": {
+ "message": "The spam threshold is zero! You will mark all mails as spam!",
+ "description": ""
}
}
\ No newline at end of file
diff --git a/pages/spamfilter/mzta-spamfilter.css b/pages/spamfilter/mzta-spamfilter.css
index 4e4a769a..6a9bacc0 100644
--- a/pages/spamfilter/mzta-spamfilter.css
+++ b/pages/spamfilter/mzta-spamfilter.css
@@ -91,6 +91,14 @@ table#miczPrefs tr:last-child td {
color: red;
}
+#spam_threshold_too_low{
+ display: none;
+ color:red;
+ font-weight: bold;
+ font-size: 1.1em;
+ margin-left: 10px;
+}
+
@media (prefers-color-scheme: dark) {
body {
diff --git a/pages/spamfilter/mzta-spamfilter.html b/pages/spamfilter/mzta-spamfilter.html
index 1791e1b5..4fafb0c9 100644
--- a/pages/spamfilter/mzta-spamfilter.html
+++ b/pages/spamfilter/mzta-spamfilter.html
@@ -17,7 +17,7 @@