mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
follow up on ed1bd0cc24
This commit is contained in:
parent
ed1bd0cc24
commit
9efa94ce6f
|
@ -128,9 +128,9 @@ docker-compose up -d mail
|
||||||
./setup.sh -Z config dkim
|
./setup.sh -Z config dkim
|
||||||
```
|
```
|
||||||
|
|
||||||
If you're seeing error messages about unchecked error, please **verify that you're using the right version of `setup.sh`**. Refer to the [Get the tools](#get-the-tools) section.
|
If you're seeing error messages about unchecked error, please **verify that you're using the right version of `setup.sh`**. Refer to the [Get the tools](#get-the-tools) section and / or execute `./setup.sh help` and read teh `VERSION` section.
|
||||||
|
|
||||||
If you are using a LDAP, the setup looks a bit different as you do not add user accounts directly. Postfix doesn't know your domain(s) and you need to provide it when configuring DKIM:
|
In case you're using LDAP, the setup looks a bit different as you do not add user accounts directly. Postfix doesn't know your domain(s) and you need to provide it when configuring DKIM:
|
||||||
|
|
||||||
``` BASH
|
``` BASH
|
||||||
./setup.sh config dkim domain '<domain.tld>[,<domain2.tld>]'
|
./setup.sh config dkim domain '<domain.tld>[,<domain2.tld>]'
|
||||||
|
|
7
setup.sh
7
setup.sh
|
@ -1,7 +1,7 @@
|
||||||
#! /bin/bash
|
#! /bin/bash
|
||||||
|
|
||||||
# version v0.2.5 stable
|
# version v0.3.0 stable
|
||||||
# executed manually (via Make)
|
# executed manually / via Make
|
||||||
# task wrapper for various setup scripts
|
# task wrapper for various setup scripts
|
||||||
|
|
||||||
SCRIPT='setup.sh'
|
SCRIPT='setup.sh'
|
||||||
|
@ -20,7 +20,8 @@ function __log_err
|
||||||
|
|
||||||
printf "Make sure you use a version of this script that matches
|
printf "Make sure you use a version of this script that matches
|
||||||
the version / tag of docker-mailserver. Please read the
|
the version / tag of docker-mailserver. Please read the
|
||||||
'Get the tools' section in the README on GitHub carefully.\n" >&2
|
'Get the tools' section in the README on GitHub careful-
|
||||||
|
ly and use ./setup.sh help and read the VERSION section.\n" >&2
|
||||||
}
|
}
|
||||||
|
|
||||||
function _unset_vars
|
function _unset_vars
|
||||||
|
|
Loading…
Reference in a new issue