passdb-vpopmail.c revision 22535a9e685e29214082878e37a267157044618e
/* Copyright (C) 2002-2003 Timo Sirainen */
/* Thanks to Courier-IMAP for showing how the vpopmail API should be used */
#include "config.h"
#ifdef PASSDB_VPOPMAIL
#include "common.h"
#include "safe-memset.h"
#include "passdb.h"
#include "mycrypt.h"
#include "userdb-vpopmail.h"
static void
{
int result;
return;
}
if (verbose)
return;
}
/* verify password */
if (!result) {
if (verbose)
return;
}
}
static void vpopmail_deinit(void)
{
vclose();
}
struct passdb_module passdb_vpopmail = {
NULL,
};
#endif