File: ext-notify-common.h

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 (69 lines) | stat: -rw-r--r-- 1,323 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
/* Copyright (c) 2002-2017 Pigeonhole authors, see the included COPYING file
 */

#ifndef __EXT_NOTIFY_COMMON_H
#define __EXT_NOTIFY_COMMON_H

/*
 * Extension
 */

extern const struct sieve_extension_def notify_extension;

/*
 * Commands
 */

extern const struct sieve_command_def cmd_notify_old;
extern const struct sieve_command_def cmd_denotify;

/*
 * Arguments
 */

void ext_notify_register_importance_tags
	(struct sieve_validator *valdtr, struct sieve_command_registration *cmd_reg,
		const struct sieve_extension *this_ext, unsigned int id_code);

/*
 * Operations
 */

extern const struct sieve_operation_def notify_old_operation;
extern const struct sieve_operation_def denotify_operation;

enum ext_notify_opcode {
	EXT_NOTIFY_OPERATION_NOTIFY,
	EXT_NOTIFY_OPERATION_DENOTIFY,
};

/*
 * Actions
 */

extern const struct sieve_action_def act_notify_old;

struct ext_notify_recipient {
	const char *full;
	const char *normalized;
};

ARRAY_DEFINE_TYPE(recipients, struct ext_notify_recipient);

struct ext_notify_action {
	const char *id;
	const char *message;
	sieve_number_t importance;

	ARRAY_TYPE(recipients) recipients;
};

/*
 * Message construct
 */

int ext_notify_construct_message
	(const struct sieve_runtime_env *renv, const char *msg_format,
		string_t *out_msg);

#endif /* __EXT_NOTIFY_COMMON_H */