I just downloaded a copy of DBMail via CVS, and am attempting to set it
up. I ran configure with --woth-mysql --prefix=/usr/local/dbmail. I
created the dbmail.conf file, all looks good.
Up until I try to add a user. Heck, here's the documentation example.
proxy bin # ./dbmail-adduser a john secret 0 25000000 [EMAIL PROTECTED]
*** dbmail-adduser ***
Opening connection to database...
Opening connection to authentication...
Ok. Connected
Adding user john with password secret, 25000000 bytes mailbox limit and
clientid 0...Failed
Check logs for details
It connects fine. It authenticates. The database exists.
mysql> USE dbmail;
Database changed
mysql> SHOW TABLES;
+---------------------------+
| Tables_in_dbmail |
+---------------------------+
| dbmail_acl |
| dbmail_aliases |
| dbmail_auto_notifications |
| dbmail_auto_replies |
| dbmail_mailboxes |
| dbmail_messageblks |
| dbmail_messages |
| dbmail_pbsp |
| dbmail_physmessage |
| dbmail_subscription |
| dbmail_users |
+---------------------------+
11 rows in set (0.00 sec)
mysql> SELECT * FROM dbmail_users;
+-----------+--------------------------------+--------+-------------+--------------+--------------+-----------------+---------------------+
| user_idnr | userid | passwd | client_idnr |
maxmail_size | curmail_size | encryption_type | last_login |
+-----------+--------------------------------+--------+-------------+--------------+--------------+-----------------+---------------------+
| 1 | [EMAIL PROTECTED]@__ | | 0
| 0 | 0 | md5 | 1979-11-03 22:05:58 |
+-----------+--------------------------------+--------+-------------+--------------+--------------+-----------------+---------------------+
1 row in set (0.00 sec)
Any ideas?