From bd62cc50831211fa79338190167eb86d6af0ae31 Mon Sep 17 00:00:00 2001 From: Siarhei Dudko Date: Tue, 28 Feb 2023 17:18:11 +0300 Subject: [PATCH] Update README.md --- README.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 7015895..f36b716 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,18 @@ # iredmail-kubernetes Running the mail server with UI on minimal resources -An unloaded server can run on about 10m CPU, 512Mi Memory. +An unloaded server can run on about `10m` CPU, `512Mi` Memory. After installation will be available: -roundcube (web ui): EMAIL_SERVER_HOSTNAME (ex: email.example.com) -iredmail (admin ui): EMAIL_SERVER_HOSTNAME/iredadmin (ex: email.example.com/iredadmin) -smtp/pop3/imap server: EMAIL_SERVER_HOSTNAME (ex: email.example.com) -first user: postmaster@FIRST_MAIL_DOMAIN (ex: postmaster@example.com) -first user password: FIRST_MAIL_DOMAIN_ADMIN_PASSWORD (ex: password) +- roundcube (web ui): `EMAIL_SERVER_HOSTNAME` (ex: `email.example.com`) +- iredmail (admin ui): `EMAIL_SERVER_HOSTNAME/iredadmin` (ex: `email.example.com/iredadmin`) +- smtp/pop3/imap server: `EMAIL_SERVER_HOSTNAME` (ex: `email.example.com`) +- first user: `postmaster@FIRST_MAIL_DOMAIN` (ex: `postmaster@example.com`) +- first user password: `FIRST_MAIL_DOMAIN_ADMIN_PASSWORD` (ex: `password`) -You will also need to set up -MX record (to receive mail) for the domain: FIRST_MAIL_DOMAIN (ex: example.com) -A record (to get letsencrypt certificates) for the domain: EMAIL_SERVER_HOSTNAME (ex: email.example.com) -SPF, DKIM and DMARK records for better delivery service +You will also need to set up: +- **MX** record (to receive mail) for the domain: `FIRST_MAIL_DOMAIN` (ex: `example.com`) +- **A** record (to get letsencrypt certificates) for the domain: `EMAIL_SERVER_HOSTNAME` (ex: `email.example.com`) +- **SPF**, **DKIM** and **DMARK** records for better delivery service This example binds the server to a node and is not a highly available deployment option. (due to the use of local storage) @@ -64,7 +64,7 @@ EOL kubectl apply -f ingress-configmap.yaml ``` -Create ingress for email server (In order for the certificates to be successfully created, you must already have a DNS record of type A configured for the address EMAIL_SERVER_HOSTNAME) +Create ingress for email server (In order for the certificates to be successfully created, you must already have a DNS record of type **A** configured for the address `EMAIL_SERVER_HOSTNAME`) ```bash tee /home/iredmail/ingress.yaml<