diff options
author | Luke Smith <luke@lukesmith.xyz> | 2021-05-04 10:48:37 -0400 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2021-05-04 10:48:37 -0400 |
commit | 39cc3a7e37a832ab3ff092eb3f7d9b710fdbbcb7 (patch) | |
tree | 27541c28639c00418286f1b1f62fe10114efad89 | |
parent | 243fca2b9c358b086cc70fe186b25410d9d70f57 (diff) |
fix #713, don't detect non-inbox as inbox
-rwxr-xr-x | bin/mw | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 } |