/usr/include/courierauthstaticlist.h is in courier-authlib-dev 0.68.0-4build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | /*
** Copyright 1998 - 2004 Double Precision, Inc. See COPYING for
** distribution information.
*/
#ifndef courierauthstaticlist_h
#define courierauthstaticlist_h
#if HAVE_CONFIG_H
#include "courier_auth_config.h"
#endif
#include <sys/types.h>
#ifdef __cplusplus
extern "C" {
#endif
struct authinfo;
struct authstaticinfo {
const char *auth_name;
int (*auth_func)(const char *, const char *, char *,
int (*)(struct authinfo *, void *),
void *);
int (*auth_prefunc)(const char *, const char *,
int (*)(struct authinfo *, void *),
void *);
void (*auth_cleanupfunc)();
int (*auth_changepwd)(const char *, /* service */
const char *, /* userid */
const char *, /* oldpassword */
const char *); /* new password */
void (*auth_idle)();
/* Not null - gets called every 5 mins when we're idle */
void (*auth_enumerate)( void(*cb_func)(const char *name,
uid_t uid,
gid_t gid,
const char *homedir,
const char *maildir,
const char *options,
void *void_arg),
void *void_arg);
} ;
extern int auth_syspasswd(const char *,
const char *,
const char *,
const char *);
#ifdef __cplusplus
}
#endif
#endif
|