Commit dbe217d7 dbe217d798f12d91aa4d9619ff5b3b25c6605bc0 by Sergey Poznyakoff

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

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