Displaying 6 results from an estimated 6 matches for "sql_driver".
Did you mean:
sql_drivers
2006 Feb 26
0
minor compilation bug in Dovecot 1.0 beta3
There's a minor compilation bug in dovecot 1.0 beta3 -- if there are no
sql_drivers, then the generated Makefile in src/lib-sql exits improperly. A
simple patch is appended below.
Regards,
John
--
John DiMarco <jdd at cs.toronto.edu> Office: SF3302B
IT Director Phone: 416-978-5300
Department of Compute...
2010 Apr 14
4
PostgreSQL driver supporting [round-robin] load balancing and redundancy [LONG]
...th PostgreSQL driver supporting multiple connections],
+ TEST_WITH(multi-pgsql, $withval),
+ want_multi_pgsql=no)
AC_ARG_WITH(lucene,
[ --with-lucene Build with CLucene full text search support],
@@ -1969,7 +1974,12 @@
LIBS=$old_LIBS
fi
-if test $want_pgsql != no; then
+want_pgsql_driver=no
+test "$want_pgsql" != no && want_pgsql_driver=yes
+test "$want_multi_pgsql" != no && want_pgsql_driver=yes
+
+
+if test $want_pgsql_driver != no; then
AC_CHECK_PROG(PG_CONFIG, pg_config, YES, NO)
if test $PG_CONFIG = NO; then
# based on code from P...
2006 Feb 06
0
dovecot-cvs/mysql-5.0.18 OLD/PASSWORD problem
...---
An embedded and charset-unspecified text was scrubbed...
Name: dovecot-sql.conf
URL: <http://dovecot.org/pipermail/dovecot/attachments/20060207/7f052073/attachment-0001.pl>
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: patch-src_lib-sql_driver-mysql_c
URL: <http://dovecot.org/pipermail/dovecot/attachments/20060207/7f052073/attachment-0002.pl>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: sql-connect.c
Type: text/x-csrc
Size: 1096 bytes
Desc: not available
URL: <http://dovecot.org/pipermail/d...
2006 Jul 28
1
Quota with dict backend - sql does not get registered
Hello everyone,
I've been working with the quota plugin, attempting to use the dict
backend. It seems the sql dict class is not getting loaded. I dropped a
couple lines in dict_class_lookup(dict.c) and it seems the only class
that gets loaded is "proxy". Any idea how to get the sql driver to load
in the quota/dict module?
My authentication goes through the sql module and is working
2013 May 27
2
Dovecot 2.2 build rpm on Centos6
...;
moduledir='/usr/lib64/dovecot'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/usr'
program_transform_name='s&^&&'
psdir='${docdir}'
rundir='/var/run/dovecot'
sbindir='/usr/sbin'
sharedstatedir='/var/lib'
sql_drivers=''
ssldir='/etc/pki/dovecot'
statedir='/var/lib/dovecot'
sysconfdir='/etc'
systemdsystemunitdir='%{_unitdir}'
target_alias=''
## ----------- ##
## confdefs.h. ##
## ----------- ##
#define PACKAGE_NAME "Dovecot"
#define PACKAGE_TARNAME &qu...
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...s = @mail_storages@
+mandir = @mandir@
+mkdir_p = @mkdir_p@
+moduledir = @moduledir@
+oldincludedir = @oldincludedir@
+pdfdir = @pdfdir@
+prefix = @prefix@
+program_transform_name = @program_transform_name@
+psdir = @psdir@
+rundir = @rundir@
+sbindir = @sbindir@
+sharedstatedir = @sharedstatedir@
+sql_drivers = @sql_drivers@
+srcdir = @srcdir@
+ssldir = @ssldir@
+statedir = @statedir@
+sysconfdir = @sysconfdir@
+target_alias = @target_alias@
+top_build_prefix = @top_build_prefix@
+top_builddir = @top_builddir@
+top_srcdir = @top_srcdir@
+AM_CPPFLAGS = \
+ -I$(top_srcdir)/src/lib \
+ -I$(top_srcdir)/src...