From 64382c7ece81e81a8717c40df72bb4d1ff77d9ef Mon Sep 17 00:00:00 2001 From: andryyy Date: Wed, 1 May 2019 23:17:10 +0200 Subject: [PATCH] [Config] Clarification about mailcow_hostname --- generate_config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generate_config.sh b/generate_config.sh index d241a9ab..6427643a 100755 --- a/generate_config.sh +++ b/generate_config.sh @@ -26,7 +26,7 @@ fi echo "Press enter to confirm the detected value '[value]' where applicable or enter a custom value." while [ -z "${MAILCOW_HOSTNAME}" ]; do - read -p "Hostname (FQDN): " -e MAILCOW_HOSTNAME + read -p "Mail server hostname (FQDN) - this is not your mail domain, but your mail servers hostname: " -e MAILCOW_HOSTNAME DOTS=${MAILCOW_HOSTNAME//[^.]}; if [ ${#DOTS} -lt 2 ] && [ ! -z ${MAILCOW_HOSTNAME} ]; then echo "${MAILCOW_HOSTNAME} is not a FQDN"