[Dovecot] help with AES_DECRYPT and password lookup - mysql password_query

Gedalya gedalya at gedalya.net
Sun Apr 29 00:16:59 EEST 2012


On 04/28/2012 04:54 PM, Jeff Lacki wrote:
> Hello-
>
> Sorry if this is a noob question, but I cant seem to get my password_query to
> work with dovecot + mysql.  Im using 'Password verification by SQL server' at:
>
> http://wiki2.dovecot.org/AuthDatabase/SQL
>
> trying to modify it to work with my encrypted passwords in the DB.
>
> Im using the following which isnt working:
>
> password_query = SELECT NULL AS password, \
>      'Y' as nopassword, userid AS user \
>      FROM users WHERE userid='%u' AND AES_DECRYPT(password, 'mykey')=password
>
> 1. Is it even possible to do this via 'password_query'?
>
> 2. If so, what am I doing wrong?
>
> Thanks,
> Jeff
>
> /mf/home/jeep/shell/.signature
The wiki says: "The password is in %w variable"
Maybe you meant

password_query = SELECT NULL AS password, \
     'Y' as nopassword, userid AS user \
     FROM users WHERE userid='%u' AND AES_DECRYPT(password, 'mykey')='%w'






More information about the dovecot mailing list