db-sql.c revision 76b43e4417bab52e913da39b5f5bc2a130d3f149
/* Copyright (c) 2003-2008 Dovecot authors, see the included COPYING file */
#include "common.h"
#if defined(PASSDB_SQL) || defined(USERDB_SQL)
#include "settings.h"
#include "auth-request.h"
#include "db-sql.h"
#include <stddef.h>
#include <stdlib.h>
static struct setting_def setting_defs[] = {
{ 0, NULL, 0 }
};
struct sql_settings default_sql_settings = {
};
{
struct sql_connection *conn;
return conn;
}
return NULL;
}
struct sql_connection *conn)
{
}
{
struct sql_connection *conn;
return conn;
}
if (*config_path == '\0')
i_fatal("sql: Configuration file path not given");
i_fatal("sql: driver not set in configuration file %s",
}
i_fatal("sql: connect string not set in configuration file %s",
}
connections = conn;
return conn;
}
{
return;
}
#endif