diff options
author | Luke Smith <luke@lukesmith.xyz> | 2018-06-08 11:45:01 -0400 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2018-06-08 11:45:01 -0400 |
commit | 2ee95907f16df8344c246875c0b55a3529f28440 (patch) | |
tree | 74691f08e69102af0c30058140e38805e7915a62 /mutt-wizard.sh | |
parent | a83cde97a4b5903feabfaf695a3200a4e473b47d (diff) |
INBOX now universal inbox
Diffstat (limited to 'mutt-wizard.sh')
-rwxr-xr-x | mutt-wizard.sh | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/mutt-wizard.sh b/mutt-wizard.sh index 8fa11f3..33eda8d 100755 --- a/mutt-wizard.sh +++ b/mutt-wizard.sh @@ -79,20 +79,17 @@ detectMailboxes() { \ delim=$(gen_delim $sidebar_width) oneline=$(cat /tmp/$1_boxes | sed -e "s/^\|$/\"/g" | tr "\n" " ") oneline="=$1 $delim $oneline" - sed -i "/^mailboxes\|^set spoolfile\|^set record\|^set postponed/d" "$muttdir"accounts/$1.muttrc + 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 -vi /tmp/$1_boxes -e "trash\|drafts\|sent\|trash\|spam\|ham\|junk\|archive\|chat\|old\|new\|gmail\|sms\|call" | sort -n | 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 -vi /tmp/$1_boxes -e "trash\|drafts\|sent\|trash\|spam\|ham\|junk\|archive\|chat\|old\|new\|gmail\|sms\|call" | sort -n | sed 1q | sed -e 's/=/+/g') 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 ;} |