From 9a82dfdc5296d6939eaeb08117f312cd13f9d318 Mon Sep 17 00:00:00 2001 From: Caohongtao Date: Wed, 9 Oct 2024 01:45:45 +0000 Subject: [PATCH] core: fix core README.md error Signed-off-by: Caohongtao --- mail/dockerfile/core/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mail/dockerfile/core/README.md b/mail/dockerfile/core/README.md index fcee3062..00439a93 100644 --- a/mail/dockerfile/core/README.md +++ b/mail/dockerfile/core/README.md @@ -28,7 +28,7 @@ These are the variables that you MUST change before deploying: to change this if you are happy with postgresql. - `DATABASE_TYPE`: It's value can be one of `sqlite`, `postgres` or `mysql` as - these are the only three database types that Mailman 3 supports. It's defualt + these are the only three database types that Mailman 3 supports. It's default value is set to `sqlite` along with the default database class and default database url above. @@ -64,9 +64,9 @@ standard version of docker-compose.yaml from this repository. Running Mailman-Core ==================== -It is highly recomended that you run this image along with the +It is highly recommended that you run this image along with the docker-compose.yaml file provided at the [github repo][1] of this -image. However, it is possibel to run this image as a standalone container if +image. However, it is possible to run this image as a standalone container if you want just a mailman-core. ```bash @@ -75,7 +75,7 @@ $ docker run -it -e "HYPERKITTY_API_KEY=changeme" -h mailman-core -v /opt/mailma ``` However, if you don't provide the environment `DATABASE_URL`, the database _may_ -not be persistant. All the configuration options are explained in more detail. +not be persistent. All the configuration options are explained in more detail. If you need mode advanced configuration for mailman, you can create `/opt/mailman/mailman.cfg` and it be added to the configuration inside the @@ -126,7 +126,7 @@ MTA You can use Postfix or [Exim][2] with this image to send emails. Mailman Core can interact with any modern MTA which can deliver emails over LMTP. The -documentation for Mailman Core has configuration settigs for using them. +documentation for Mailman Core has configuration settings for using them. Only Exim and Postfix has been tested with these images and are supported as of now. There _might_ be some limitations with using other MTAs in a containerized -- Gitee