tzieleniewski wrote:
I am using mysql module as the authorization module and I get the following warning:
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!! Replacing User-Password in config items with Cleartext-Password. !!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!! Please update your configuration so that the "known good" !!!
!!! clear text password is in Cleartext-Password, and not in User-Password. !!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
How can I force sql module to put the password value taken from the database into the Cleartext-Password instead od User-Password??
Update the data in the SQL database? You have the string
"User-Password". Change it to "Cleartext-Password".
And one more question but about digest module:
Will it work if I will use a sql module in authorize section and then digest in the authentication??
Yes. You should list "digest" in the authorize section, too, as the
example config file shows.
Thanks for your answer.