1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) University of Cambridge 1995 - 2009 */
6 /* See the file NOTICE for conditions of use and distribution. */
12 /*************************************************
14 *************************************************/
16 /* See local README for interface description */
19 passwd_open(uschar *filename, uschar **errmsg)
21 filename = filename; /* Keep picky compilers happy */
23 return (void *)(-1); /* Just return something non-null */
29 /*************************************************
30 * Find entry point for passwd *
31 *************************************************/
33 /* See local README for interface description */
36 passwd_find(void *handle, uschar *filename, uschar *keystring, int length,
37 uschar **result, uschar **errmsg, BOOL *do_cache)
41 handle = handle; /* Keep picky compilers happy */
47 if (!route_finduser(keystring, &pw, NULL)) return FAIL;
48 *result = string_sprintf("*:%d:%d:%s:%s:%s", (int)pw->pw_uid, (int)pw->pw_gid,
49 pw->pw_gecos, pw->pw_dir, pw->pw_shell);
55 /*************************************************
56 * Version reporting entry point *
57 *************************************************/
59 /* See local README for interface description. */
61 #include "../version.h"
64 passwd_version_report(FILE *f)
67 fprintf(f, "Library version: passwd: Exim version %s\n", EXIM_VERSION_STR);
71 static lookup_info _lookup_info = {
72 US"passwd", /* lookup name */
73 lookup_querystyle, /* query-style lookup */
74 passwd_open, /* open function */
75 NULL, /* no check function */
76 passwd_find, /* find function */
77 NULL, /* no close function */
78 NULL, /* no tidy function */
79 NULL, /* no quoting function */
80 passwd_version_report /* version reporting */
84 #define passwd_lookup_module_info _lookup_module_info
87 static lookup_info *_lookup_list[] = { &_lookup_info };
88 lookup_module_info passwd_lookup_module_info = { LOOKUP_MODULE_INFO_MAGIC, _lookup_list, 1 };
90 /* End of lookups/passwd.c */