chore: Increaes complaint thresholds

This commit is contained in:
Dries Augustyns
2026-01-21 20:46:33 +01:00
parent 8de79e37e9
commit e16093a264
+4 -4
View File
@@ -25,10 +25,10 @@ const SECURITY_THRESHOLDS = {
BOUNCE_ALLTIME_CRITICAL: 8,
// Complaint rate thresholds (spam reports)
COMPLAINT_7DAY_WARNING: 0.05,
COMPLAINT_7DAY_CRITICAL: 0.1,
COMPLAINT_ALLTIME_WARNING: 0.02,
COMPLAINT_ALLTIME_CRITICAL: 0.08,
COMPLAINT_7DAY_WARNING: 0.075,
COMPLAINT_7DAY_CRITICAL: 0.15,
COMPLAINT_ALLTIME_WARNING: 0.03,
COMPLAINT_ALLTIME_CRITICAL: 0.12,
} as const;
interface RateData {