Displaying 1 result from an estimated 1 matches for "change_passwd_plugin_init".
Did you mean:
change_passwd_plugin_deinit
2010 Aug 01
2
error 89 when loading plugin
Hi,
I'm very confused - that's not too difficult for me.
I have written a small plugin change_passwd_plugin.c
I would like this custom IMAP command to be available to all users.
The code contains the following.
void change_passwd_plugin_init(void)
{
command_register("XCHANGEPASSWORD", cmd_xchangepasswd, 0);
str_append(capability_string, " XCHANGEPASSWORD");
}
void change_passwd_plugin_deinit(void)
{
command_unregister("XCHANGEPASSWORD");
}
% nm
0000000000000920 T change_passwd_plugin_d...