* On 02 Oct 2009, Joost Kremers wrote:
> For some reason, since I did the OS upgrade, mutt's regular
> expressions are case-sensitive. I noticed this with several hooks
> that use regexps and also with the variable reply_regexp, which all
> of a sudden doesn't match capitalized "Re: " anymore, with the result
> that when I reply to a message, an additional "Re: " is added to the
> subject line, even if it begins with "Re: " already. I hadn't changed
> it from the default value, which always worked fine.

A regex that is all lowercase matches insensitively.  A regex that
contains uppercase is case-sensitive.


> I changed reply_regexp to "^(Re([\\[0-9\\]+])*|Aw):[ \t]*", and then noticed

Use "^(re([\\[0-9\\]+])*|aw):[ \t]*" and see whether the behavior
changes.

-- 
 -D.    d...@uchicago.edu    NSIT    University of Chicago

Reply via email to