More mblaze function's and fixes for some.

This commit is contained in:
CronyAkatsuki 2024-01-08 16:17:48 +01:00
parent 1f382aaad3
commit 508c74512c

View File

@ -104,6 +104,7 @@ mnew () {
mbsync -V $profile mbsync -V $profile
mlist -s "$maildir"/INBOX | msort -dr | mseq -S mlist -s "$maildir"/INBOX | msort -dr | mseq -S
fi fi
minc "$maildir/INBOX" > /dev/null
} }
# Get full mail for current profile including threads # Get full mail for current profile including threads
@ -117,4 +118,11 @@ mall () {
mbsync -V $profile mbsync -V $profile
mlist "$maildir"/INBOX | mthread -r -S "$sent" | mseq -S mlist "$maildir"/INBOX | mthread -r -S "$sent" | mseq -S
fi fi
minc "$maildir/INBOX" > /dev/null
}
# Set mail as read
mread() {
mflag -S $1
mseq -f : | mseq -S
} }