diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib-storage/mailbox-match-plugin.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/lib-storage/mailbox-match-plugin.h b/src/lib-storage/mailbox-match-plugin.h new file mode 100644 index 0000000..c6dbfe9 --- /dev/null +++ b/src/lib-storage/mailbox-match-plugin.h @@ -0,0 +1,16 @@ +#ifndef MAILBOX_MATCH_PLUGIN_H +#define MAILBOX_MATCH_PLUGIN_H + +struct mailbox; + +/* Utility library to allow a Dovecot plugin an easy way to configure a list + of mailbox patterns and special-use flags that can be matched against. */ + +struct mailbox_match_plugin * +mailbox_match_plugin_init(struct mail_user *user, const char *set_prefix); +void mailbox_match_plugin_deinit(struct mailbox_match_plugin **match); + +bool mailbox_match_plugin_exclude(struct mailbox_match_plugin *match, + struct mailbox *box); + +#endif |