Skip to content
Snippets Groups Projects
Commit c4c7722f authored by Stephan Bosch's avatar Stephan Bosch
Browse files

Forgot to add new file for stop command.

parent 1fe262fe
No related branches found
No related tags found
No related merge requests found
/* Copyright (c) 2002-2008 Dovecot Sieve authors, see the included COPYING file
*/
#include "sieve-common.h"
#include "sieve-commands.h"
#include "sieve-code.h"
#include "sieve-generator.h"
#include "sieve-interpreter.h"
/*
* Stop command
*
* Syntax
* stop
*/
static bool cmd_stop_generate
(const struct sieve_codegen_env *cgenv,
struct sieve_command_context *ctx ATTR_UNUSED);
static bool cmd_stop_validate
(struct sieve_validator *validator, struct sieve_command_context *ctx);
const struct sieve_command cmd_stop = {
"stop",
SCT_COMMAND,
0, 0, FALSE, FALSE,
NULL, NULL,
cmd_stop_validate,
cmd_stop_generate,
NULL
};
/*
* Stop operation
*/
static int opc_stop_execute
(const struct sieve_operation *op,
const struct sieve_runtime_env *renv, sieve_size_t *address);
const struct sieve_operation cmd_stop_operation = {
"STOP",
NULL,
SIEVE_OPERATION_STOP,
NULL,
opc_stop_execute
};
/*
* Command validation
*/
static bool cmd_stop_validate
(struct sieve_validator *validator ATTR_UNUSED,
struct sieve_command_context *ctx)
{
sieve_command_exit_block_unconditionally(ctx);
return TRUE;
}
/*
* Code generation
*/
static bool cmd_stop_generate
(const struct sieve_codegen_env *cgenv,
struct sieve_command_context *ctx ATTR_UNUSED)
{
sieve_operation_emit_code(cgenv->sbin, &cmd_stop_operation);
return TRUE;
}
/*
* Code execution
*/
static int opc_stop_execute
(const struct sieve_operation *op ATTR_UNUSED,
const struct sieve_runtime_env *renv,
sieve_size_t *address ATTR_UNUSED)
{
sieve_runtime_trace(renv, "STOP");
sieve_interpreter_interrupt(renv->interp);
return SIEVE_EXEC_OK;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment

Consent

On this website, we use the web analytics service Matomo to analyze and review the use of our website. Through the collected statistics, we can improve our offerings and make them more appealing for you. Here, you can decide whether to allow us to process your data and set corresponding cookies for these purposes, in addition to technically necessary cookies. Further information on data protection—especially regarding "cookies" and "Matomo"—can be found in our privacy policy. You can withdraw your consent at any time.