
| Current Path : /include/dovecot/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //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