I want to use Postfix
+Dovecot
as email solution. We already have a website with Woltlab Burning Board running. Some of these users (support staff, moderators, devs) will get an email address.
The most comfortable way (as administrator) is to use the login credentials from the burning board. The problem is, that I failed to check the password. Burning Board is using double salted bcrypt hashes and I have no idea to build a mysql statement which is able to check the password against the hash.
You can see the password check here: https://github.com/WoltLab/WCF/blob/master/wcfsetup/install/files/lib/util/PasswordUtil.class.php ("test123" reults: "$2a$08$15yH0BYHr2XVzdT64dmSQO1yBHOUU.HkB72J1eGQcKRu8FDC5RXMG")
Is there any way to check the double salted password hashes directly in mysql? If not can I use a php script to check the user credentials (I have heard SALS support this)?
Thanks for your help!