On Sun, Nov 14, 2010 at 02:57:52PM +0800, Yue Wu wrote: > As the title, I want to, say, highlight all messages with the subject > "vim" in folder "ml-r" in color red, how to define such a color?
Folder hooks and color can do that. # For pager folder-hook . 'color header white black "Subject: "' folder-hook 'ml-r' 'color header white red "Subject: .*vim.*"' # For index folder-hook . 'color index white black "."' folder-hook 'ml-r' 'color index white red "~s .*vim.*"' -- Monte
