On Sun, 23 Feb 2003 18:44:11 +0100 (CET) Martin Jost <[EMAIL PROTECTED]> wrote:

> #if wxUSE_REGEX
>       gettext_noop("Apply this RE to simplif&y subjects"),
>       gettext_noop("And &replace the matched part with"),
> #else // !wxUSE_REGEX

> Are those options not active at the moment ?

No, they're not active (as you must have found out yourself now, you
must have USE_EXTRA_THREADING_OPTIONS defined, which is not the case by
default). The reasons are that:

- using regexps is much slower than hand-coding in this case, and speed
is pretty important for threading: try to open a folder with a few
thousand messages using REs...

- they're too complicated, really: here is the default value for the
regex that is used to simplify the subject line (remove the 'Re:' around
a possible list-prefix). 

  "^ *(R[Ee](\[[0-9]+\])?: +)*(\[[^][]+\]+)?(R[Ee](\[[0-9]+\])?: +)*"
is replaced (no possibility to change that) by
  "\3"

You would have to expand this RE further to handle other reply
prefixes...

-- 
Xavier Nodet
"They that can give up essential liberty to obtain a little temporary
safety deserve neither liberty nor safety." - Benjamin Franklin, 1759.




-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Mahogany-Developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-developers

Reply via email to