/src/pigeonhole/src/lib-sieve/plugins/mailbox/sieve-ext-mailbox.h
Line | Count | Source |
1 | | #ifndef SIEVE_EXT_MAILBOX_H |
2 | | #define SIEVE_EXT_MAILBOX_H |
3 | | |
4 | | /* sieve_ext_mailbox_get_extension(): |
5 | | * Get the extension struct for the mailbox extension. |
6 | | */ |
7 | | static inline const struct sieve_extension *sieve_ext_mailbox_get_extension |
8 | | (struct sieve_instance *svinst) |
9 | 0 | { |
10 | 0 | return sieve_extension_get_by_name(svinst, "mailbox"); |
11 | 0 | } Unexecuted instantiation: ext-mailbox.c:sieve_ext_mailbox_get_extension Unexecuted instantiation: tag-mailbox-create.c:sieve_ext_mailbox_get_extension Unexecuted instantiation: tst-mailboxexists.c:sieve_ext_mailbox_get_extension |
12 | | |
13 | | /* sieve_ext_mailbox_register_create_tag(): |
14 | | * Register the :create tagged argument for a command other than fileinto and |
15 | | * redirect. |
16 | | */ |
17 | | void sieve_ext_mailbox_register_create_tag |
18 | | (struct sieve_validator *valdtr, const struct sieve_extension *mailbox_ext, |
19 | | const char *command); |
20 | | |
21 | | #endif |