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
|
/*
** Copyright 1998 - 1999 Double Precision, Inc. See COPYING for
** distribution information.
*/
#if HAVE_CONFIG_H
#include "courier_auth_config.h"
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <pwd.h>
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
#include "auth.h"
#include "authmysql.h"
static const char rcsid[]="$Id: preauthmysql.c,v 1.10 2004/10/21 00:10:49 mrsam Exp $";
int auth_mysql_pre(const char *user, const char *service,
int (*callback)(struct authinfo *, void *), void *arg)
{
struct authmysqluserinfo *authinfo;
struct authinfo aa;
authinfo=auth_mysql_getuserinfo(user, service);
if (!authinfo) /* Fatal error - such as MySQL being down */
return (1);
if (!authinfo->home) /* User not found */
return (-1);
memset(&aa, 0, sizeof(aa));
/*aa.sysusername=user;*/
aa.sysuserid= &authinfo->uid;
aa.sysgroupid= authinfo->gid;
aa.homedir=authinfo->home;
aa.maildir=authinfo->maildir && authinfo->maildir[0] ?
authinfo->maildir:0;
aa.address=authinfo->username;
aa.passwd=authinfo->cryptpw;
aa.clearpasswd=authinfo->clearpw;
aa.fullname=authinfo->fullname;
aa.quota=authinfo->quota && authinfo->quota[0] ?
authinfo->quota:0;
aa.options=authinfo->options;
return ((*callback)(&aa, arg));
}
|