blob: dc8eb12e1c9ba838d5144f6a573cae69637105f7 (
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
|
/* Copyright (c) 2002-2018 Pigeonhole authors, see the included COPYING file
*/
/* Extension debug
* ---------------
*
* Authors: Stephan Bosch
* Specification: RFC 5293
* Implementation: full
* Status: testing
*
*/
#include "lib.h"
#include "array.h"
#include "sieve-extensions.h"
#include "sieve-commands.h"
#include "sieve-comparators.h"
#include "sieve-match-types.h"
#include "sieve-address-parts.h"
#include "sieve-validator.h"
#include "sieve-generator.h"
#include "sieve-binary.h"
#include "sieve-interpreter.h"
#include "sieve-dump.h"
#include "ext-editheader-common.h"
/*
* Operations
*/
const struct sieve_operation_def *editheader_operations[] = {
&addheader_operation,
&deleteheader_operation
};
/*
* Extension
*/
static bool ext_editheader_validator_load
(const struct sieve_extension *ext, struct sieve_validator *validator);
const struct sieve_extension_def editheader_extension = {
.name = "editheader",
.load = ext_editheader_load,
.unload = ext_editheader_unload,
.validator_load = ext_editheader_validator_load,
SIEVE_EXT_DEFINE_OPERATIONS(editheader_operations)
};
static bool ext_editheader_validator_load
(const struct sieve_extension *ext, struct sieve_validator *validator)
{
/* Register new commands */
sieve_validator_register_command(validator, ext, &addheader_command);
sieve_validator_register_command(validator, ext, &deleteheader_command);
return TRUE;
}
|