Month: August 2021

Update password for mail

Generate new password with command:

mkpasswd -m sha512crypt -s

Connect to the database and update the value:

update virtual_users set password = 'yourpassword' where id=3;

Posted by admin, 0 comments