commit 54fa5a86ff811be19908cc983153261760726bfd
parent 91eb7744f2674701a86a064954a31125fdebf005
Author: Luke Smith <luke@lukesmith.xyz>
Date: Sun, 18 Feb 2018 10:39:12 -0500
Merge pull request #10 from scattenlaeufer/smtp_fix
Fix smtp url for manually entered smtp servers
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mutt-wizard.sh b/mutt-wizard.sh
@@ -91,7 +91,7 @@ removeAccount() { sed -ie "
manual() { \
imap=$( dialog --inputbox "Insert the IMAP server for your email provider (excluding the port number)" 10 60 3>&1 1>&2 2>&3 3>&- )
iport=$(dialog --inputbox "What is your server's IMAP port number? (Usually 993)" 10 60 3>&1 1>&2 2>&3 3>&-)
- smtpserver=$( dialog --inputbox "Insert the SMTP server for your email provider (excluding the port number)" 10 60 3>&1 1>&2 2>&3 3>&- )
+ smtp=$( dialog --inputbox "Insert the SMTP server for your email provider (excluding the port number)" 10 60 3>&1 1>&2 2>&3 3>&- )
sport=$( dialog --inputbox "What is your server's SMTP port number? (Usually 587 or 465)" 10 60 3>&1 1>&2 2>&3 3>&- ) ;}