summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Guth <bjoern.guth@rwth-aachen.de>2018-02-18 16:32:53 +0100
committerBjörn Guth <bjoern.guth@rwth-aachen.de>2018-02-18 16:34:07 +0100
commit4c1cc3a6a763899d17691a3d0aa6044e6a92d264 (patch)
tree56606962121a6fd0a870dec470e8efd60b163bbd
parent48fe8f5dd84c6614019c04be0f3b90f8025f1977 (diff)
Fix smtp url for manually entered smtp servers
This fixes one half of #6.
-rwxr-xr-xmutt-wizard.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/mutt-wizard.sh b/mutt-wizard.sh
index 559c19d..4df5916 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>&- ) ;}