AUTH_ENUMERATE(3) | Double Precision, Inc. | AUTH_ENUMERATE(3) |
auth_enumerate - Obtain list of accounts
#include <courierauth.h>
auth_enumerate(int (*callback_func) (const char *, uid_t, gid_t, const char *, const char *, const char *, void *), void *callback_arg);
auth_enumerate enumerates all of the available accounts. auth_enumerate repeatedly calls callback_func, once for each account. callback_func receives the following arguments:
After invoking callback_func for the last account, auth_enumerate invokes callback_func one more time with all parameters set to NULL or 0.
If auth_enumerate encounters an error it will terminate without calling callback_func with all NULL or 0 parameters. This can be used to determine whether a partial list of accounts was received.
Some back-end Courier authentication modules do not implement account enumeration, so this function may not be available in all configurations.
authlib(3)[1], auth_generic_meta(3)[2], auth_login_meta(3)[3], auth_getuserinfo_meta(3)[4], auth_passwd(3)[5].
10/28/2020 | Double Precision, Inc. |