search for: foo_plugin_init

Displaying 1 result from an estimated 1 matches for "foo_plugin_init".

Did you mean: foo_plugin_deinit
2014 Aug 30
1
Need help to compile and install a minimal dovecot imap plugin
...*foo_module; static imap_client_created_func_t *next_hook_client_created; static void foo_client_created(struct client **client) { str_append((*client)->capability_string, " XFOO"); if (next_hook_client_created != NULL) { next_hook_client_created(client); } } void foo_plugin_init(struct module *module) { i_info(?init?); foo_module = module; next_hook_client_created = imap_client_created_hook_set(foo_client_created); } void foo_plugin_deinit(void) { i_info(?deinit?); imap_client_created_hook_set(next_hook_client_created); } const char foo_plugin_binary_dependency...