On 21Nov2009 23:20, Nicolas KOWALSKI <n...@petole.demisel.net> wrote:
| On Sat, Nov 21, 2009 at 09:14:08PM +0100, Michael Wagner wrote:
| > I have this in my muttrc and it works:
| > 
| > set reply_regexp="^((re([\[^-][0-9]+\]?)*|aw|antwort|antw|wg):[ \t]*)+"
| 
| Thanks for your reply.
| Well, I just tried it (edited my ~/.muttrc and restarted), and it still 
| does not work. :-/

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.

I'm also puzzled that in the above, the "re" is followed by
"([\[^-][0-9]+\]?)*" but not the other prefix strings ("aw" etc),
though it should not affect your cited use case.

Cheers,
-- 
Cameron Simpson <c...@zip.com.au> DoD#743
http://www.cskk.ezoshosting.com/cs/

Just because Unix is a multiuser system doesn't mean I want to share it with
anybody!        - Paul Tomblin, in rec.aviation.military

Reply via email to