debian/patches/features/compressed-folders ========================================== This is the compressed folders patch by Roland Rosenfeld . The home page for this patch is: http://www.spinnaker.de/mutt/compressed/ * Patch last synced with upstream: - Date: 2008-05-20 - File: http://www.spinnaker.de/mutt/compressed/patch-1.5.18.rr.compressed.1.gz * Changes made: - 2008-05-20 myon: refreshed to remove hunks in auto* files debian/patches/features/ifdef ============================= This is the ifdef patch by Cedric Duval . This command allows to test if a feature has been compiled in before actually attempting to configure / use it. Syntax: ifdef where can be the name of a variable, function, or command. Examples: ifdef imap-fetch-mail 'source ~/.mutt/imap_setup' ifdef trash set trash=~/Mail/trash * Patch last synced with upstream: - Date: 2007-02-15 - File: http://cedricduval.free.fr/mutt/patches/download/patch-1.5.4.cd.ifdef.1 * Changes made: - Updated to 1.5.13 - Also look for commands - Use mutt_strcmp in favor of ascii_strncasecmp to compare strings. debian/patches/features/maildir-mtime ===================================== This is the maildir mtime patch by Dale Woolridge. The home page for this patch is: http://www.mutt.ca/maildir-mtime.html * Patch last synced with upstream: - Date: 2004-08-10 - File: http://www.mutt.ca/patches/patch-1.5.6.dw.maildir-mtime.1 * Changes made: - removed a spurious const in add_folder() definition. - added a $maildir_mtime option to allow this patch to be disabled at runtime (see Bug#253261, comments from Zephaniah E. Hull). - 2007-04-03 myon: resolved conflict in browser.c debian/patches/features/purge-message ===================================== This is the purge message patch by Cedric Duval . (requires trash folder patch) This patch adds the purge-message function, which, unlike delete-message, will bypass the trash folder and really delete the mail. You can bind this function to D, for instance, by adding the following lines to your muttrc: bind index \eD purge-message bind pager \eD purge-message Please be very careful with this function, and try to use it as less as possible. The risk resides in getting into the habit of always using purge-message instead of delete-message, which would really defeat the purpose of having a trash folder feature. * Patch last synced with upstream: - Date: 2007-02-15 - File: http://cedricduval.free.fr/mutt/patches/download/patch-1.5.5.1.cd.purge_message.3.4 * Changes made: - Updated to 1.5.13 - Fixed indentation of "purged" in mutt.h. debian/patches/features/sensible_browser_position ================================================= This is the sensible browser position patch by Haakon Riiser. * Found in: <20050309162127.GA5656@s> http://lists.df7cb.de/mutt/message/20050309.162127.a244a894.en.html debian/patches/features/trash-folder ==================================== This is the trash folder patch by Cedric Duval . With this patch, if the trash variable is set to a path (unset by default), the deleted mails will be moved to a trash folder instead of being irremediably purged when syncing the mailbox. For instance, set trash="~/Mail/trash" will cause every deleted mail to go to this folder. Note that the append to the trash folder doesn't occur until the resync is done. This allows you to change your mind and undo deletes, and thus the moves to the trash folder are unnecessary. Notes * You might also want to have a look at the purge message feature below which is related to this patch. * IMAP is now supported. To retain the previous behavior, add this to your muttrc: folder-hook ^imap:// 'unset trash' FAQ Every once in a while, someone asks what are the advantages of this patch over a macro based solution. Here's an attempt to answer this question: * The folder history doesn't clutter up with unwanted trash entries. * Delayed move to the trash allows to change one's mind. * No need to treat the case of "normal folders" and trash folders separately with folder-hooks, and to create two sets of macros (one for the index, one for the pager). * Works not only with delete-message, but also with every deletion functions like delete-pattern, delete-thread or delete-subthread. To sum up, it's more integrated and transparent to the user. * Patch last synced with upstream: - Date: 2007-02-15 - File: http://cedricduval.free.fr/mutt/patches/download/patch-1.5.5.1.cd.trash_folder.3.4 * Changes made: - Updated to 1.5.13: - structure of _mutt_save_message changed (commands.c) - context of option (OPTCONFIRMAPPEND) changed (muttlib.c) - Fixed indentation of "appended" in mutt.h. debian/patches/features/xtitles =============================== This is the xterm title patch as found on the mutt mailing lists. * Changes made: - 2007-01-27 myon: using %P caused a segfault, updated status.c to catch menu==NULL. - 2007-02-20 myon: make the note about the xterm_set_titles defaults a comment. - 2008-08-02 myon: move set_xterm_* prototypes into the proper header file (cleaner code, no functional change, evades conflict with sidebar patch) debian/patches/mutt-patched/sidebar =================================== This is the sidebar patch. When enabled, mutt will show a list of mailboxes with (new) message counts in a separate column on the left side of the screen. As this feature is still considered to be unstable, this patch is only applied in the "mutt-patched" package. * Configuration variables: sidebar_delim (string, default "|") This specifies the delimiter between the sidebar (if visible) and other screens. sidebar_visible (boolean, default no) This specifies whether or not to show sidebar (left-side list of folders). sidebar_width (integer, default 0) The width of the sidebar. * Patch source: - http://www.lunar-linux.org/index.php?page=mutt-sidebar - http://lunar-linux.org/~tchan/mutt/patch-1.5.18.sidebar.20080611.txt * Changes made: - 2008-08-02 myon: Refreshed patch using quilt push -f to remove hunks we do not need (Makefile.in).