Displaying 1 result from an estimated 1 matches for "cmd_xchangepasswd".
2010 Aug 01
2
error 89 when loading plugin
...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_deinit
00000000000008ec T change_passwd_plugin_init
0000000000201248 D change_...