Current File : //usr/local/apps/dovecot/include/dovecot/mailbox-match-plugin.h
#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