blob: 09db2cb2e7450c7fe2e802cf5f5b5607b965bcd7 (
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
|
#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 struct smtp_address *address;
};
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
|