mutt: add support for ignore-thread patch

Allows application of the ignore-thread patch listed at
<http://wiki.mutt.org/index.cgi?PatchList>. Adds a new command, ignore-thread,
which ignores and unignores message threads. Ignored threads stay collapsed in
the message list.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Benjamin Stiglitz 2011-07-10 15:08:39 -04:00 committed by Adam Vandenberg
parent 311e6b73e7
commit 89d09045f1
1 changed files with 6 additions and 1 deletions

View File

@ -13,7 +13,8 @@ class Mutt < Formula
['--enable-debug', "Build with debug option enabled"],
['--sidebar-patch', "Apply sidebar (folder list) patch"],
['--trash-patch', "Apply trash folder patch"],
['--with-slang', "Build against slang instead of ncurses"]
['--with-slang', "Build against slang instead of ncurses"],
['--ignore-thread-patch', "Apply ignore-thread patch"]
]
end
@ -28,6 +29,10 @@ class Mutt < Formula
p << 'http://patch-tracker.debian.org/patch/series/dl/mutt/1.5.21-5/features/trash-folder'
end
if ARGV.include? '--ignore-thread-patch'
p << 'http://ben.at.tanjero.com/patches/ignore-thread-1.5.21.patch'
end
return p
end