From 774b869e261490ab3370345e9b753191bbb3d66a Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Sat, 29 Mar 2025 22:48:34 +0100 Subject: [PATCH] fixed quotes, grant all privileges on --- .../docs/ispmail-bookworm/90-prepare-database.mdx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/content/docs/ispmail-bookworm/90-prepare-database.mdx b/src/content/docs/ispmail-bookworm/90-prepare-database.mdx index 19542d9..e4c325c 100644 --- a/src/content/docs/ispmail-bookworm/90-prepare-database.mdx +++ b/src/content/docs/ispmail-bookworm/90-prepare-database.mdx @@ -71,15 +71,15 @@ You will be told that your query was OK and that one new row was added. Now you have an empty database. Let us give the “mailadmin” database user the required privileges to manage it. You are still connected to the database, right? To create a user with full permissions enter this SQL command. Please use the **first** password you just generated instead of mine: -
-grant all on mailserver.* to 'mailadmin'@'localhost' identified by '**gefk6lA2brMOeb8eR5WYaMEdKDQfnF**';
-
+``` +grant all privileges on mailserver.* to 'mailadmin'@'localhost' identified by 'gefk6lA2brMOeb8eR5WYaMEdKDQfnF'; +``` Also create the read-only user that will grant Postfix and Dovecot database access later (use your **second** random password here). -
-grant select on mailserver.* to 'mailserver'@'127.0.0.1' identified by '**x893dNj4stkHy1MKQq0USWBaX4ZZdq**';
-
+``` +grant select on mailserver.* to 'mailserver'@'127.0.0.1' identified by 'x893dNj4stkHy1MKQq0USWBaX4ZZdq'; +```