diff --git a/src/content/docs/ispmail-trixie/110-whats-new.mdx b/src/content/docs/ispmail-trixie/110-whats-new.mdx index b5b0d30..78954eb 100644 --- a/src/content/docs/ispmail-trixie/110-whats-new.mdx +++ b/src/content/docs/ispmail-trixie/110-whats-new.mdx @@ -35,8 +35,7 @@ organisation. So I replaced resource-hungry components by more lightweight softw A new Debian stable release comes with newer software versions. So I checked the changelogs to determine what we will have to change: -- Postfix 3.7.6 -> 3.10.3. No breaking changes. In this guide we will turn off _chroot_ mode though to simplify - things a bit. The author of Postfix does not recommend it anyway. +- Postfix 3.7.6 -> 3.10.3. No breaking changes. - Dovecot 2.3.19 -> 2.4.1. Various deprecations of the configuration. This guide uses the new syntax. - PHP 8.2 -> 8.4. Roundcube has no issues with the newer PHP version. - rspamd 3.4.1 -> 3.12.1. No breaking changes. diff --git a/src/content/docs/ispmail-trixie/130-install-packages.mdx b/src/content/docs/ispmail-trixie/130-install-packages.mdx index 9a0d12f..4bf185b 100644 --- a/src/content/docs/ispmail-trixie/130-install-packages.mdx +++ b/src/content/docs/ispmail-trixie/130-install-packages.mdx @@ -19,8 +19,6 @@ DEBIAN_FRONTEND=noninteractive \ php-intl php-mbstring php-xml unzip certbot \ roundcube-mysql roundcube swaks ufw mutt \ unattended-upgrades mariadb-server - -postfix chroot off ``` While the server is downloading and installing the packages, let me give you a quick explanation of each package: @@ -60,11 +58,3 @@ While the server is downloading and installing the packages, let me give you a q functionality of your mail server. Think of it as a text-based Thunderbird. - **unattended-upgrades** \ Installs security updates automatically. - - diff --git a/src/content/docs/ispmail-trixie/155-database.mdx b/src/content/docs/ispmail-trixie/155-database.mdx index ab1c6fe..00df6f3 100644 --- a/src/content/docs/ispmail-trixie/155-database.mdx +++ b/src/content/docs/ispmail-trixie/155-database.mdx @@ -67,13 +67,19 @@ Create the database users: ```sql grant all privileges on mailserver.* to 'mailadmin'@'localhost' identified by 'FIRST-PASSWORD-HERE'; -grant select on mailserver.* to 'mailserver'@'localhost' identified by 'SECOND-PASSWORD-HERE'; +grant select on mailserver.* to 'mailserver'@'127.0.0.1' identified by 'SECOND-PASSWORD-HERE'; ``` -