Update linupx-scripts.sh

This commit is contained in:
2022-03-11 19:08:34 -06:00
parent 501028525a
commit 232474337e

View File

@@ -464,8 +464,15 @@ POSTFIX_INSTALL(){
wget https://git.schroedercity.com/voltron/Misc-Scripts/raw/branch/master/defaults/main.cf -O /etc/postfix/main.cf
wget https://git.schroedercity.com/voltron/Misc-Scripts/raw/branch/master/defaults/sender_canonical -O /etc/postfix/sender_canonical
read -p "Server hostname: " pfhostname
hostname=`hostname`
echo -e -n "${idsCL[LightCyan]}Server Name (Default=${hostname}): ${idsCL[Default]}"
read pfhostname
echo ""
if [ "${pfhostname}" = "" ]; then
pfhostname=${hostname}
fi
read -p "Default from email (portion before @scity.us): " pffromemail
echo ""