From 6537cf4aa8029e2c524df79af457320e3a31ab9b Mon Sep 17 00:00:00 2001
From: "Chris (Homy)" <mc2m382@chomeyer.de>
Date: Mon, 15 Mar 2021 18:03:18 +0100
Subject: [PATCH] sieve-spam.txt do not stop evaluation

Hi

I want to be able to discard messages with "X-Spam-Status" = ^YES

To do that I create a sieve in roundcube mail.

But since the evaluation of Spam e-mails is stopped at a very early step of the processing the roundcube dovecot filter does not apply.

To make that possible the `stop;`command is removed.
---
 conf/sieve-spam.txt | 1 -
 1 file changed, 1 deletion(-)

diff --git a/conf/sieve-spam.txt b/conf/sieve-spam.txt
index bf6bdcef..9f06d421 100644
--- a/conf/sieve-spam.txt
+++ b/conf/sieve-spam.txt
@@ -2,6 +2,5 @@ require ["regex", "fileinto", "imap4flags"];
 
 if allof (header :regex "X-Spam-Status" "^Yes") {
   fileinto "Spam";
-  stop;
 }