Displaying 1 result from an estimated 1 matches for "mysql_crypt_pwfield".
2012 Dec 24
1
Postfix/mysql/dovecot - Understanding password encryption
...net/thewiki/pmwiki.php/LinuxServersCentOS/Cent6VirtMailServer
to get me started. I am up to roundcubemail setup and am stumbling to
understand what the author here is doing with encrypted passwords, so
felt it was time to delve deeper into this.
My old setup uses mysql-crypt for the password.
MYSQL_CRYPT_PWFIELD password
and users could be added to the table with:
INSERT INTO `users` (`email`, `password`, `quota`) VALUES
('sales at example.com', ENCRYPT('secret'), 10485760);
But where this was all simple and no choices, I get to figure out what
to do with my dovecot setup.
Some of the...