Displaying 1 result from an estimated 1 matches for "db_passdb".
2005 Aug 06
1
auth_passdb using MySQL fails at starup
...lacks the reason it can not connect - unless the
(13) means anything to anybody???
Anybody have any ideas???
dovecot.conf :
.
auth_assdb = mysql /etc/dovecot-mysql.conf
dovecot-mysql.conf :
db_host = localhost
db_unix_socket = /var/lib/mysql/mysql.sock
#db_port = 3306
db = vmail
db_user = vmail
db_passdb = temp
password_query = SELECT 'test' as password from mailbox
vmail.sql:
create database vmail;
use vmail;
grant insert,select,update,delete on vmail.* to 'vmail'@'localhost'
identified by 'temp';
CREATE TABLE mailbox (
user varchar(20) not null,
domain varchar...