commit 39cc3a7e37a832ab3ff092eb3f7d9b710fdbbcb7
parent 243fca2b9c358b086cc70fe186b25410d9d70f57
Author: Luke Smith <luke@lukesmith.xyz>
Date: Tue, 4 May 2021 10:48:37 -0400
fix #713, don't detect non-inbox as inbox
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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
}