diff --git a/sieve/tests/actions.sieve b/sieve/tests/actions.sieve index 142a450bd80137698591b024e923a9fd3921c62d..9d3e61286f85375add176e1af6e7e6971872db48 100644 --- a/sieve/tests/actions.sieve +++ b/sieve/tests/actions.sieve @@ -9,8 +9,8 @@ if address :contains "to" "vestingbar" { } #redirect "stephan@rename-it.nl"; -#redirect "nico@example.nl"; -#redirect "stephan@example.com"; +redirect "nico@example.nl"; +redirect "stephan@example.com"; fileinto "frop"; fileinto "INBOX"; diff --git a/src/lib-sieve/sieve-actions.c b/src/lib-sieve/sieve-actions.c index aab85a33066360d22f39f84f1eaa8b509030de1a..73f24b11206046c4c2bef9b9fb295b33c2f31429 100644 --- a/src/lib-sieve/sieve-actions.c +++ b/src/lib-sieve/sieve-actions.c @@ -24,13 +24,13 @@ static bool act_store_start (const struct sieve_action *action, const struct sieve_action_exec_env *aenv, void *context, void **tr_context); static bool act_store_execute - (const struct sieve_action *action ATTR_UNUSED, + (const struct sieve_action *action, const struct sieve_action_exec_env *aenv, void *tr_context); static bool act_store_commit - (const struct sieve_action *action ATTR_UNUSED, + (const struct sieve_action *action, const struct sieve_action_exec_env *aenv, void *tr_context); static void act_store_rollback - (const struct sieve_action *action ATTR_UNUSED, + (const struct sieve_action *action, const struct sieve_action_exec_env *aenv, void *tr_context, bool success); const struct sieve_action act_store = {