From 39cc3a7e37a832ab3ff092eb3f7d9b710fdbbcb7 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Tue, 4 May 2021 10:48:37 -0400 Subject: [PATCH] fix #713, don't detect non-inbox as inbox --- bin/mw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/mw b/bin/mw index 4ecbcfa..0c31c00 100755 --- a/bin/mw +++ b/bin/mw @@ -236,7 +236,7 @@ getboxes() { if [ -n "${force+x}" ] ; then *[Jj][Uu][Nn][Kk]*) formatShortcut j junk "$x" ;; *[Aa][Rr][Cc][Hh][Ii][Vv][Ee]*) formatShortcut a archive "$x" ;; *[Ss][Pp][Aa][Mm]*) formatShortcut S spam "$x" ;; - *[Ii][Nn][Bb][Oo][Xx]*) formatShortcut i inbox "$x"; setBox spoolfile "$x" inbox="$x" ;; + *[Ii][Nn][Bb][Oo][Xx]) formatShortcut i inbox "$x"; setBox spoolfile "$x" inbox="$x" ;; esac done }