There's a command in the rules file called stop
, which stops processing. I'm not sure why this is needed though. If it's the last command in a list of directives within a rule, then isn't the rule already done processing? Or does it mean don't skip to the next rule in the list? In other words, let's say my sieve file has a list of rules:
Rule A
Rule B
Rule C
Rule D
If Rule B has a stop
command at the end, will rules C and D be skipped? And I'm assuming rules are executed in the order they appear in the sieve file?