blob: 055ee882b8f5becd95423cff286b1f0fefed8444 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
/* Copyright (c) 2002-2018 Pigeonhole authors, see the included COPYING file
*/
/* Extension vnd.dovecot.execute
* -----------------------------
*
* Authors: Stephan Bosch
* Specification: vendor-defined; spec-bosch-sieve-extprograms
* Implementation: full
* Status: experimental
*
*/
#include "lib.h"
#include "sieve-extensions.h"
#include "sieve-commands.h"
#include "sieve-binary.h"
#include "sieve-validator.h"
#include "sieve-interpreter.h"
#include "sieve-ext-copy.h"
#include "sieve-extprograms-common.h"
/*
* Extension
*/
static bool ext_execute_load(const struct sieve_extension *ext, void **context);
static void ext_execute_unload(const struct sieve_extension *ext);
static bool ext_execute_validator_load
(const struct sieve_extension *ext, struct sieve_validator *valdtr);
const struct sieve_extension_def sieve_ext_vnd_execute = {
.name = "vnd.dovecot.execute",
.load = ext_execute_load,
.unload = ext_execute_unload,
.validator_load = ext_execute_validator_load,
SIEVE_EXT_DEFINE_OPERATION(sieve_opr_execute)
};
/*
* Context
*/
static bool ext_execute_load(const struct sieve_extension *ext, void **context)
{
if ( *context != NULL ) {
ext_execute_unload(ext);
*context = NULL;
}
*context = (void *)sieve_extprograms_config_init(ext);
return TRUE;
}
static void ext_execute_unload(const struct sieve_extension *ext)
{
struct sieve_extprograms_config *ext_config =
(struct sieve_extprograms_config *)ext->context;
if ( ext_config == NULL ) return;
sieve_extprograms_config_deinit(&ext_config);
}
/*
* Validation
*/
static bool ext_execute_validator_load
(const struct sieve_extension *ext, struct sieve_validator *valdtr)
{
/* Register commands */
sieve_validator_register_command(valdtr, ext, &sieve_cmd_execute);
return TRUE;
}
|