Patches
Mutt
Mutt is a text-based, highly configurable MUA (mail user agent). It is my current MUA of choice.
The patch for my customized version of mutt does the following:
- Adds a %n format to the
folder_formatconfiguration variable. This format will display the number of new messages rather than just an 'N' in the folder browser. It only works for maildir and IMAP folders (and IMAP only because mutt already supports this in the regular code base). - Adds a %c to
folder_formatto display the total number of messages in a maildir folder. - Adds a %D to
folder_formatto display the number of deleted messages in a maildir folder. - Adds a %U to
folder_formatto display the number of non-new messages in a maildir folder. - Changes the behavior of %N in
folder_format. Normally, mutt displays either 'N' or ' '. For IMAP, it always displays a count. The inconsistency seemed wrong to me, so I made the IMAP behavior consistent with the others. - Allows mutt to display the number of messages in the currently opened folder in the folder browser. The browser display will be incorrect if the folder has not been sync'ed.
- Changes the definition of "new" for maildir. Only messages in $MAILDIR/cur and $MAILDIR/new that haven't been flagged as seen ('S') or trashed ('T') are counted as new messages in the folder browser.
- Changes delete-message so that it clears the new flag.
Patch against mutt-1.5.9: mutt-danborn.1.5.9.patch
Last updated: 15 March 2005