commit 4c1cc3a6a763899d17691a3d0aa6044e6a92d264
parent 48fe8f5dd84c6614019c04be0f3b90f8025f1977
Author: Björn Guth <bjoern.guth@rwth-aachen.de>
Date: Sun, 18 Feb 2018 16:32:53 +0100
Fix smtp url for manually entered smtp servers
This fixes one half of #6.
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>&- ) ;}