File: ext-variables-namespaces.h

package info (click to toggle)
dovecot 1%3A2.2.27-3%2Bdeb9u2~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 48,520 kB
  • sloc: ansic: 430,475; sh: 17,438; makefile: 6,587; cpp: 1,557; perl: 295; python: 67; xml: 44; pascal: 27
file content (46 lines) | stat: -rw-r--r-- 1,429 bytes parent folder | download | duplicates (3)
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
/* Copyright (c) 2002-2016 Pigeonhole authors, see the included COPYING file
 */

#ifndef __EXT_VARIABLES_NAMESPACES_H
#define __EXT_VARIABLES_NAMESPACES_H

#include "sieve-common.h"

#include "ext-variables-common.h"
#include "sieve-ext-variables.h"

/*
 * Namespace registry
 */

bool ext_variables_namespace_exists
	(const struct sieve_extension *var_ext, struct sieve_validator *valdtr,
		const char *identifier);
const struct sieve_variables_namespace *ext_variables_namespace_create_instance
	(const struct sieve_extension *var_ext, struct sieve_validator *valdtr,
		struct sieve_command *cmd, const char *identifier);

void ext_variables_register_core_namespaces
	(const struct sieve_extension *var_ext,
		struct ext_variables_validator_context *ctx);

/*
 * Namespace argument
 */

struct sieve_ast_argument *ext_variables_namespace_argument_create
	(const struct sieve_extension *this_ext,
		struct sieve_validator *valdtr, struct sieve_ast_argument *parent_arg,
		struct sieve_command *cmd, ARRAY_TYPE(sieve_variable_name) *var_name);
bool ext_variables_namespace_argument_activate
	(const struct sieve_extension *this_ext, struct sieve_validator *valdtr,
		struct sieve_ast_argument *arg, struct sieve_command *cmd,
		ARRAY_TYPE(sieve_variable_name) *var_name, bool assignment);

/*
 * Namespace operand
 */

extern const struct sieve_operand_def namespace_variable_operand;

#endif /* __EXT_VARIABLES_NAMESPACES_H */