The following regex doesn't seem to work:
from nospam-(tmp|sndr|kw)-* bare
Instead, I have to have three separate lines to accomplish this. I'm guessing that TMDA isn't handling the alternation for some reason. Is it an escaping problem, or is regex alternation simply not handled by TMDA?
The code [TMDA/FilterParser.py FilterParser.firstmatch() -> TMDA/Util.py findmatch()] uses the fnmatch module to do its comparisons.
This means Unix style wildcards only, not regular expressions, are used.
http://www.python.org/doc/2.3.5/lib/module-fnmatch.html
-- Stephen Warren, Software Engineer, NVIDIA, Fort Collins, CO [EMAIL PROTECTED] http://www.wwwdotorg.org/pgp.html _____________________________________________ tmda-users mailing list ([email protected]) http://tmda.net/lists/listinfo/tmda-users
