(sieve_action_keep): Remove the delete mark from the message.
Showing
1 changed file
with
3 additions
and
0 deletions
... | @@ -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 | ... | ... |
-
Please register or sign in to post a comment