diff --git a/install.sh b/install.sh index 6f446d3..4fc0a44 100755 --- a/install.sh +++ b/install.sh @@ -373,21 +373,21 @@ ask_additionals() { done if [ "$SMTP_SERVER" == "3" ]; then - echo "Please add STMP HOST: "; + echo "Please add SMTP HOST: "; while read -r SMTP_HOST; do if [ "$SMTP_HOST" != "" ]; then break; fi; done - echo "Please add STMP PORT (587, 465, 25, etc.): "; + echo "Please add SMTP PORT (587, 465, 25, etc.): "; while read -r SMTP_PORT; do if [ "$SMTP_PORT" != "" ]; then break; fi; done - echo "Please add STMP SECURITY (starttls, force_tls, off, etc.): "; + echo "Please add SMTP SECURITY (starttls, force_tls, off, etc.): "; while read -r SMTP_SECURITY; do if [ "$SMTP_SECURITY" != "" ]; then break; @@ -395,21 +395,21 @@ ask_additionals() { done fi - echo "Please add STMP FROM (mail address from): "; + echo "Please add SMTP FROM (mail address from): "; while read -r SMTP_FROM; do if [ "$SMTP_FROM" != "" ]; then break; fi; done - echo "Please add STMP USERNAME: "; + echo "Please add SMTP USERNAME: "; while read -r SMTP_USERNAME; do if [ "$SMTP_USERNAME" != "" ]; then break; fi; done - echo "Please add STMP PASSWORD: "; + echo "Please add SMTP PASSWORD: "; while read -r -s SMTP_PASSWORD; do if [ "$SMTP_PASSWORD" != "" ]; then break;