Displaying 1 result from an estimated 1 matches for "firstpassword".
2015 May 01
1
Fatal: Unknown scheme: SHA512-CRYPT. On a Mac-mini
...ch seems to work
fine, and creates the table as it should - even though the resulting
password doesn't appear to be quite right for SHA512-CRYPT
INSERT INTO `mailserver`.`virtual_users`
(`id`, `domain_id`, `password` , `email`)
VALUES
('1', '1', ENCRYPT('firstpassword', CONCAT('$6$',
SUBSTRING(SHA(RAND()), -16))), 'email1 at example.com'),
('2', '1', ENCRYPT('secondpassword', CONCAT('$6$',
SUBSTRING(SHA(RAND()), -16))), 'email2 at example.com');
What it actually creates is this: This is not a SH...