Hello i’m trying to setup my email on my server per the tutorial posted on digital ocean(https://www.digitalocean.com/community/tutorials/how-to-configure-a-mail-server-using-postfix-dovecot-mysql-and-spamassassin). When I get to the step:
INSERT INTO servermail
.virtual_users
(id
, domain_id
, password
, email
)
VALUES
(‘1’, ‘1’, ENCRYPT(‘firstpassword’, CONCAT(‘$6$’, SUBSTRING(SHA(RAND()), -16))), ‘email1@example.com’),
(‘2’, ‘1’, ENCRYPT(‘secondpassword’, CONCAT(‘$6$’, SUBSTRING(SHA(RAND()), -16))), ‘email2@example.com’);
I get an error: ERROR 1305 (42000): FUNCTION servermail.ENCRYPT does not exist
How can this be fixed so I can have access to email. Thanks.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
Hello,
Think that the ENCRYPT function was depricated in the latest versions. https://dev.mysql.com/doc/refman/8.0/en/encryption-functions.html
You should be able to use the SHA2() https://dev.mysql.com/doc/refman/8.0/en/encryption-functions.html#function_sha2
Hope this might help you.
Regards, Ivan / YoghurtPower
Hi @brianallen714,
Can you confirm where exactly are you getting this error, the above mentioned
Needs to be added in your MySQL DB which you have configured previously.
Are you executing the query there?
Regards, KFSys