From 9124555f2b4b12bb2d922826dd28e373b80e04ea Mon Sep 17 00:00:00 2001 From: Boky Date: Thu, 20 Aug 2020 08:45:29 +0200 Subject: [PATCH] Fix hostname variable change in README.md Apparently, `README.md` still referenced the old `HOSTNAME` variable. This should fix the issue. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 518dbf6..ba19ea2 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ The following configuration options are available the server auto-generate domain keys. - `OPENDKIM_` = Provide any additonal OpenDKIM setting. -### `POSTFIX_hostname` +### `POSTFIX_myhostname` You may configure a specific hostname that the SMTP server will use to identify itself. If you don't do it, the default Docker host name will be used. A lot of times, this will be just the container id (e.g. `f73792d540a5`) @@ -78,7 +78,7 @@ which may make it difficult to track your emails in the log files. If you care a I suggest you set this variable, e.g.: ```sh -docker run --rm --name postfix -e HOSTNAME=postfix-docker -p 1587:587 boky/postfix +docker run --rm --name postfix -e POSTFIX_myhostname=postfix-docker -p 1587:587 boky/postfix ``` ### `RELAYHOST`, `RELAYHOST_USERNAME` and `RELAYHOST_PASSWORD`