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