diff --git a/ingo/lib/Script/Procmail.php b/ingo/lib/Script/Procmail.php index 0908179416b..fa654fb51df 100644 --- a/ingo/lib/Script/Procmail.php +++ b/ingo/lib/Script/Procmail.php @@ -36,7 +36,7 @@ class Ingo_Script_Procmail extends Ingo_Script_Base /* Does the driver support setting IMAP flags? */ 'imap_flags' => false, /* Does the driver support the stop-script option? */ - 'stop_script' => true, + 'stop_script' => false, /* Can this driver perform on demand filtering? */ 'on_demand' => false, /* Does the driver require a script file to be generated? */ @@ -191,9 +191,6 @@ protected function _generate() ), $this->_params ); - if (!$rule->stop) { - $recipe->addFlag('c'); - } foreach ($rule->conditions as $condition) { $recipe->addCondition($condition); } @@ -223,9 +220,6 @@ protected function _generate() if ($loop++) { $recipe->addFlag('E'); } - if (!$rule->stop) { - $recipe->addFlag('c'); - } $recipe->addCondition($condition); $this->_addItem(Ingo::RULE_FILTER, $recipe); }