diff options
author | Luke Smith <luke@lukesmith.xyz> | 2018-07-08 09:55:50 -0400 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2018-07-08 09:55:50 -0400 |
commit | 62e310a1110d2c4c8aa35db61eb7d4d7bc690f51 (patch) | |
tree | 64a1cfdfc43ce8a9d972b389f1124a8709b54bc5 /mutt-wizard.sh | |
parent | 1a6e319abc94796413d188d2f86e13cc43c95806 (diff) |
inbox detection now smart with case
Diffstat (limited to 'mutt-wizard.sh')
-rwxr-xr-x | mutt-wizard.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mutt-wizard.sh b/mutt-wizard.sh index 03ad81a..8b88efd 100755 --- a/mutt-wizard.sh +++ b/mutt-wizard.sh @@ -82,14 +82,17 @@ detectMailboxes() { \ sed -i "/^mailboxes\|^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 -i /tmp/$1_boxes -e inbox | sed 1q | formatShortcut i inbox $1 grep -i /tmp/$1_boxes -e sent | sed 1q | formatShortcut s sent $1 grep -i /tmp/$1_boxes -e draft | sed 1q | formatShortcut d drafts $1 grep -i /tmp/$1_boxes -e trash | sed 1q | formatShortcut t trash $1 grep -i /tmp/$1_boxes -e spam | sed 1q | formatShortcut S spam $1 grep -i /tmp/$1_boxes -e archive | sed 1q | formatShortcut a archive $1 + spoolfile=$(grep -i /tmp/$1_boxes -e inbox | sed -e 's/=/+/g' | sed 1q) record=$(grep -i /tmp/$1_boxes -e sent | sed -e 's/=/+/g' | sed 1q) postponed=$(grep -i /tmp/$1_boxes -e draft | sed -e 's/=/+/g' | sed 1q) trash=$(grep -i /tmp/$1_boxes -e trash | sed -e 's/=/+/g' | sed 1q) + echo "set spoolfile = \"$spoolfile\"" >> "$muttdir"accounts/$1.muttrc echo "set record = \"$record\"" >> "$muttdir"accounts/$1.muttrc echo "set postponed = \"$postponed\"" >> "$muttdir"accounts/$1.muttrc echo "set trash = \"$trash\"" >> "$muttdir"accounts/$1.muttrc ;} |