mech-login.c revision 73bfdbe28c2ce6d143eadf0bab8ccfbe4cab0fae
/*
* LOGIN authentication mechanism.
*
* Copyright (c) 2004 Andrey Panin <pazke@donpac.ru>
*
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
#include "common.h"
#include "mech.h"
#include "passdb.h"
#include "safe-memset.h"
struct auth_request *request)
{
}
static void
{
static const char prompt2[] = "Password:";
const char *error;
if (verbose) {
i_info("login(%s): %s",
}
return;
}
} else {
}
}
static void
const unsigned char *data __attr_unused__,
{
static const char prompt1[] = "Username:";
}
{
}
static struct auth_request *mech_login_auth_new(void)
{
struct auth_request *request;
return request;
}
const struct mech_module mech_login = {
"LOGIN",
};