From 93115f2725b891e363fd55dd9f2a7a5ac2db7b7b Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Thu, 18 Sep 2025 18:02:48 +0200 Subject: [PATCH] changed from pre tags to blocks --- .../ispmail-bookworm/100-postfix-access-mariadb.mdx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/content/docs/ispmail-bookworm/100-postfix-access-mariadb.mdx b/src/content/docs/ispmail-bookworm/100-postfix-access-mariadb.mdx index 5f0cd67..66ae80c 100644 --- a/src/content/docs/ispmail-bookworm/100-postfix-access-mariadb.mdx +++ b/src/content/docs/ispmail-bookworm/100-postfix-access-mariadb.mdx @@ -28,17 +28,17 @@ Imagine that Postfix receives an email for `somebody@example.org` and wants to f Now you need to make Postfix use this database mapping: -
+```sh
 postconf virtual_mailbox_domains=mysql:/etc/postfix/mysql-virtual-mailbox-domains.cf
-
+```sh The “postconf” command conveniently adds configuration lines to your `/etc/postfix/main.cf` file. It also activates the new setting instantly so you do not have to reload the Postfix process. The test data you created earlier added the domain “example.org” as one of your mailbox domains. Let’s ask Postfix if it recognizes that domain: -
+```sh
 postmap -q example.org mysql:/etc/postfix/mysql-virtual-mailbox-domains.cf
-
+```sh