Re: reply_regexp help to match 'RE :'

2009-11-23 Thread Nicolas KOWALSKI
On Mon, Nov 23, 2009 at 10:01:09AM +1100, Cameron Simpson wrote: There's no whitespace before the colon in the above pattern, so it won't match RE :. Try: set reply_regexp=^((re([\[^-][0-9]+\]?)*|aw|antwort|antw|wg)[ \t]*:[ \t]*)+ You can see I've added [ \t]* before the colon.

Re: reply_regexp help to match 'RE :'

2009-11-23 Thread Gary Johnson
On 2009-11-23, Nicolas KOWALSKI n...@petole.demisel.net wrote: On Mon, Nov 23, 2009 at 10:01:09AM +1100, Cameron Simpson wrote: There's no whitespace before the colon in the above pattern, so it won't match RE :. Try: set reply_regexp=^((re([\[^-][0-9]+\]?)*|aw|antwort|antw|wg)[

Re: reply_regexp help to match 'RE :'

2009-11-23 Thread Nicolas KOWALSKI
On Mon, Nov 23, 2009 at 11:23:19AM -0800, Gary Johnson wrote: changed my 'reply_regexp' by adding [ \t]* before the color per Cameron's suggestion, and replied to it. Mutt removed the RE : and replaced it with Re: , as it should. So there's something else broken in my config. I will search.