summaryrefslogtreecommitdiff
path: root/mutt-wizard.sh
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2018-02-18 10:39:12 -0500
committerGitHub <noreply@github.com>2018-02-18 10:39:12 -0500
commit54fa5a86ff811be19908cc983153261760726bfd (patch)
tree78c6a8dd0721d21784b61cc9e4f8b0f5805a449a /mutt-wizard.sh
parent91eb7744f2674701a86a064954a31125fdebf005 (diff)
parent4c1cc3a6a763899d17691a3d0aa6044e6a92d264 (diff)
Merge pull request #10 from scattenlaeufer/smtp_fix
Fix smtp url for manually entered smtp servers
Diffstat (limited to 'mutt-wizard.sh')
-rwxr-xr-xmutt-wizard.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/mutt-wizard.sh b/mutt-wizard.sh
index 62917dd..1e321c3 100755
--- 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>&- ) ;}