Displaying 1 result from an estimated 1 matches for "procecess".
Did you mean:
proccess
2011 Mar 11
1
Using dovecot with wordpress/phpass passwords?
...vecot-sql.conf
default_pass_scheme = CRYPT
password_query = SELECT user_pass AS password FROM wp_users WHERE
user_email='%u';
user_query = SELECT 501 as uid, 501 as gid,'maildir:storage=51200' as
quota FROM wp_users WHERE user_email = '%u'
I can see that the query is being procecessed according to the logs.
Wordpress and others are using phpass to authenticate
(http://www.openwall.com/phpass/), it is basically a salted md5 hash.
Basically, after the process, a hash like this is obtained.
$P$BiWISc3IsqRHxeEjq4VJP1Vi8gy4mg1 (for test123 password)
I would like to know if dove...