diff options
Diffstat (limited to 'pigeonhole/src/lib-sieve/plugins/mailbox/ext-mailbox-common.h')
-rw-r--r-- | pigeonhole/src/lib-sieve/plugins/mailbox/ext-mailbox-common.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/pigeonhole/src/lib-sieve/plugins/mailbox/ext-mailbox-common.h b/pigeonhole/src/lib-sieve/plugins/mailbox/ext-mailbox-common.h new file mode 100644 index 0000000..96cff39 --- /dev/null +++ b/pigeonhole/src/lib-sieve/plugins/mailbox/ext-mailbox-common.h @@ -0,0 +1,39 @@ +#ifndef EXT_MAILBOX_COMMON_H +#define EXT_MAILBOX_COMMON_H + +#include "sieve-common.h" + +#include "sieve-ext-mailbox.h" + +/* + * Tagged arguments + */ + +extern const struct sieve_argument_def mailbox_create_tag; + +/* + * Commands + */ + +extern const struct sieve_command_def mailboxexists_test; + +/* + * Operands + */ + +extern const struct sieve_operand_def mailbox_create_operand; + +/* + * Operations + */ + +extern const struct sieve_operation_def mailboxexists_operation; + +/* + * Extension + */ + +extern const struct sieve_extension_def mailbox_extension; + +#endif + |