/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 | | /* Get the extension struct for the mailbox extension. |
5 | | */ |
6 | | static inline const struct sieve_extension * |
7 | | sieve_ext_mailbox_get_extension(struct sieve_instance *svinst) |
8 | 0 | { |
9 | 0 | return sieve_extension_get_by_name(svinst, "mailbox"); |
10 | 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 |
11 | | |
12 | | /* Register the :create tagged argument for a command other than fileinto and |
13 | | redirect. |
14 | | */ |
15 | | void sieve_ext_mailbox_register_create_tag( |
16 | | struct sieve_validator *valdtr, |
17 | | const struct sieve_extension *mailbox_ext, const char *command); |
18 | | |
19 | | #endif |