useful mutt tidbits __ __ .--------.--.--.| |_| |_ | | | || _| _| |__|__|__|_____||____|____| commandline ----------- - open a mailbox - mutt -f ~/Mail/twt keyboard shortcuts ------------------ navigation - go to last message - `=` - go to last message - `*` manipulating messages - mark thread as read - `CTRL`+`R` - delete pattern: `D` - all - pattern: `~A` - date range - pattern: `~d DD/MM/YYYY-DD/MM/YYYY` Note: must be valid ranges in index not just arbitrary range - delete message under cursor - d - to undelete go to top of message - `u` note: normally you can't navigate up deleted messages, which is why you have jump above them macros ------ ``` macro index A \ "~NN." \ "mark all new as read" ``` thanks to the following sites [1] https://yctct.com/tagged/mutt [2] https://brianbuccola.com/how-to-mark-all-emails-as-read-in-mutt/ [3] http://www.mutt.org/doc/manual/manual.html#patterns [4] https://www.ucolick.org/~lharden/learnmutt.html