File: ext-metadata.c

package info (click to toggle)
dovecot 1%3A2.2.33.2-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports-sloppy
  • size: 50,420 kB
  • sloc: ansic: 449,977; sh: 9,653; makefile: 6,792; cpp: 1,557; perl: 295; python: 73; xml: 44; pascal: 27
file content (83 lines) | stat: -rw-r--r-- 2,085 bytes parent folder | download
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
81
82
83
/* Copyright (c) 2002-2017 Pigeonhole authors, see the included COPYING file
 */

#include "lib.h"

#include "sieve-extensions.h"
#include "sieve-commands.h"
#include "sieve-binary.h"

#include "sieve-validator.h"
#include "sieve-interpreter.h"

#include "ext-metadata-common.h"

/*
 * Extension mboxmetadata
 * -----------------------------
 *
 * Authors: Stephan Bosch
 * Specification: RFC 5490; Section 3
 * Implementation: skeleton
 * Status: development
 *
 */

const struct sieve_operation_def *mboxmetadata_operations[] = {
	&metadata_operation,
	&metadataexists_operation,
};

static bool ext_mboxmetadata_validator_load
	(const struct sieve_extension *ext, struct sieve_validator *valdtr);

const struct sieve_extension_def mboxmetadata_extension = {
	.name = "mboxmetadata",
	.validator_load = ext_mboxmetadata_validator_load,
	SIEVE_EXT_DEFINE_OPERATIONS(mboxmetadata_operations)
};

static bool ext_mboxmetadata_validator_load
(const struct sieve_extension *ext, struct sieve_validator *valdtr)
{
	sieve_validator_register_command(valdtr, ext, &metadata_test);
	sieve_validator_register_command(valdtr, ext, &metadataexists_test);

	return TRUE;
}

/*
 * Extension servermetadata
 * -----------------------------
 *
 * Authors: Stephan Bosch
 * Specification: RFC 5490; Section 4
 * Implementation: skeleton
 * Status: development
 *
 */

const struct sieve_operation_def *servermetadata_operations[] = {
	&servermetadata_operation,
	&servermetadataexists_operation,
};

static bool ext_servermetadata_validator_load
	(const struct sieve_extension *ext, struct sieve_validator *valdtr);

const struct sieve_extension_def servermetadata_extension = {
	.name = "servermetadata",
	.validator_load = ext_servermetadata_validator_load,
	SIEVE_EXT_DEFINE_OPERATIONS(servermetadata_operations)
};

static bool ext_servermetadata_validator_load
(const struct sieve_extension *ext, struct sieve_validator *valdtr)
{
	sieve_validator_register_command(valdtr, ext, &servermetadata_test);
	sieve_validator_register_command(valdtr, ext, &servermetadataexists_test);

	return TRUE;
}