mutt-wizard

fork of Luke Smiths mutt-wizard
git clone git://git.jakekoroman.com/mutt-wizard
Log | Files | Refs | README | LICENSE

commit 78030885b4e3153b69d408424beeb544adc093a8
parent ca9f1a12ccbc01889fd2a1257462594e4d2ea272
Author: Luke Smith <luke@lukesmith.xyz>
Date:   Wed,  6 Jan 2021 21:25:09 -0500

fix

Diffstat:
Mbin/mw | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/mw b/bin/mw @@ -229,8 +229,8 @@ Junk Trash Sent Archive" && return 0 - info="$(curl -s --user "$login:$(pass $pass_prefix$fulladdr)" --url "${protocol:-imaps}://$imap")" || - { echo "Log-on not successful." ; exit 1 ;} + info="$(curl -s --user "$login:$(pass $pass_prefix$fulladdr)" --url "${protocol:-imaps}://$imap")" + [ -z "$info" ] && echo "Log-on not successful." && return 1 mailboxes="$(echo "$info" | sed "s/.*\" //" | tr -d '')" }