diff options
author | Luke <luke@lukesmith.xyz> | 2018-02-13 22:44:31 -0700 |
---|---|---|
committer | Luke <luke@lukesmith.xyz> | 2018-02-13 22:44:31 -0700 |
commit | da31840c15898eb52d1d8cce7946e92a267b779d (patch) | |
tree | a0409974bfd4a00b32c8401a63ab2f1c90cefa83 | |
parent | 22c4f69e109e30597ec0d00372266b7fdbb0e92c (diff) |
sms fix
-rwxr-xr-x | mutt-wizard.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mutt-wizard.sh b/mutt-wizard.sh index d92e3f1..22f15b3 100755 --- a/mutt-wizard.sh +++ b/mutt-wizard.sh @@ -40,7 +40,7 @@ detectMailboxes() { \ sed -i "/^mailboxes\|^set spoolfile\|^set record\|^set postponed/d" "$muttdir"accounts/$1.muttrc echo mailboxes $oneline >> "$muttdir"accounts/$1.muttrc sed -i "/^macro index,pager g/d" "$muttdir"accounts/$1.muttrc - grep -vi /tmp/$1_boxes -e "trash\|drafts\|sent\|trash\|spam\|junk\|archive\|chat\|old\|new\|gmail" | sort -n | sed 1q | formatShortcut i inbox $1 + grep -vi /tmp/$1_boxes -e "trash\|drafts\|sent\|trash\|spam\|junk\|archive\|chat\|old\|new\|gmail\|sms" | sort -n | sed 1q | formatShortcut i inbox $1 grep -i /tmp/$1_boxes -e sent | formatShortcut s sent $1 grep -i /tmp/$1_boxes -e draft | formatShortcut d drafts $1 grep -i /tmp/$1_boxes -e trash | formatShortcut t trash $1 |