Hello,
i have installed Dolphin 7.3.3 and a mailserver whit Dovecot, Postfix and Roundcube.
Now i want to create an e-Mail Account for each member from the Dophin installation.
For that i need the Userpassword in Cleartext to change it to the Dovecote Passworthash.
The conversation from Plaintextpasswort to the Dovecothash works whit this:
$password = "PlainTextPassword"; $salt = substr(sha1(rand()), 0, 16); $hashedPassword = "{SHA512-CRYPT}" . crypt($password, "$6$$salt");