1 /* $Cambridge: exim/src/src/lookups/passwd.c,v 1.5 2009/11/16 19:50:38 nm4 Exp $ */
3 /*************************************************
4 * Exim - an Internet mail transport agent *
5 *************************************************/
7 /* Copyright (c) University of Cambridge 1995 - 2009 */
8 /* See the file NOTICE for conditions of use and distribution. */
14 /*************************************************
16 *************************************************/
18 /* See local README for interface description */
21 passwd_open(uschar *filename, uschar **errmsg)
23 filename = filename; /* Keep picky compilers happy */
25 return (void *)(-1); /* Just return something non-null */
31 /*************************************************
32 * Find entry point for passwd *
33 *************************************************/
35 /* See local README for interface description */
38 passwd_find(void *handle, uschar *filename, uschar *keystring, int length,
39 uschar **result, uschar **errmsg, BOOL *do_cache)
43 handle = handle; /* Keep picky compilers happy */
49 if (!route_finduser(keystring, &pw, NULL)) return FAIL;
50 *result = string_sprintf("*:%d:%d:%s:%s:%s", (int)pw->pw_uid, (int)pw->pw_gid,
51 pw->pw_gecos, pw->pw_dir, pw->pw_shell);
57 /*************************************************
58 * Version reporting entry point *
59 *************************************************/
61 /* See local README for interface description. */
63 #include "../version.h"
66 passwd_version_report(FILE *f)
69 fprintf(f, "Library version: passwd: Exim version %s\n", EXIM_VERSION_STR);
73 static lookup_info _lookup_info = {
74 US"passwd", /* lookup name */
75 lookup_querystyle, /* query-style lookup */
76 passwd_open, /* open function */
77 NULL, /* no check function */
78 passwd_find, /* find function */
79 NULL, /* no close function */
80 NULL, /* no tidy function */
81 NULL, /* no quoting function */
82 passwd_version_report /* version reporting */
86 #define passwd_lookup_module_info _lookup_module_info
89 static lookup_info *_lookup_list[] = { &_lookup_info };
90 lookup_module_info passwd_lookup_module_info = { LOOKUP_MODULE_INFO_MAGIC, _lookup_list, 1 };
92 /* End of lookups/passwd.c */