Commit dbe217d7 dbe217d798f12d91aa4d9619ff5b3b25c6605bc0 by Sergey Poznyakoff

(sieve_action_keep): Remove the delete mark from the message.

1 parent f013492d
......@@ -37,6 +37,9 @@ int
sieve_action_keep (sieve_machine_t mach, list_t args, list_t tags)
{
sieve_log_action (mach, "KEEP", NULL);
if (sieve_is_dry_run (mach))
return 0;
sieve_mark_deleted (mach->msg, 0);
return 0;
}
......