becki wrote:

hello,
so had a look and checked the lenght of the passwd field in the users table and it says varchar(32) !

Strange, I have a 1.2.2 version here which has a passwd field of length 34.
does this need to be updated then to varchar(34) ?? and the rest of the database structure stays the same ??

You're on MySQL, right?:

ALTER TABLE users MODIFY passwd VARCHAR(34);

should do it.

The rest of the database should be the same. It might be a good idea to dump your database structure and post it on the list if your unsure about whether it will work.

dumping your database structure in MySQL goes like this:

mysqldump --no-data -u <user> -p <database>

where <user> is the username you connect with to your database and <database> is your dbmail database. You'll be prompted for your password.

Ilja

Reply via email to