From c9aed3491da9f526d71a6cc460aced815ff33b2c Mon Sep 17 00:00:00 2001 From: sean Date: Wed, 17 Jul 2019 15:13:32 -0700 Subject: [PATCH] tweaks --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index fb437af..4f2effc 100644 --- a/setup.sh +++ b/setup.sh @@ -69,7 +69,7 @@ a=""; for x in `timedatectl list-timezones`; do a="$a $x" ; done smtp=""; while [ -z "$smtp" ]; do smtp=`dialog --no-cancel --inputbox "Outoing e-mail SMTP proxy server:" 8 40 2>&1 >/dev/tty`; done -email=""; while [ -z "$email" ]; do subnet=`dialog --no-cancel --inputbox "Outgoing mail username:" 8 40 2>&1 >/dev/tty`; done +email=""; while [ -z "$email" ]; do email=`dialog --no-cancel --inputbox "Outgoing mail username:" 8 40 2>&1 >/dev/tty`; done emailpassword="" while [ "$emailpassword" = "" ]; do emailpassword=`dialog --no-cancel --title "Outgoing e-mail SMTP mail password" --insecure --passwordbox "Enter outgoing e-mail SMTP password:" 8 40 2>&1 1>/dev/tty`