[Mailman-Developers] Ok, this is weird...

Ron Jarrell jarrell@vt.edu
Thu, 11 Apr 2002 09:56:00 -0400


At 09:38 AM 4/11/02 -0400, Ron Jarrell wrote:
>if line[0] not in ' \t' and line.find(':') < 0:


Ok.  My patch (because I'm lazy enough to decide that supporting pseudo continuations is not nearly important enough to worry about) is:


Index: Tagger.py
===================================================================
RCS file: /cvsroot/mailman/mailman/Mailman/Handlers/Tagger.py,v
retrieving revision 2.3
diff -r2.3 Tagger.py
33c33
<     if not mlist.topics:
---
>     if not mlist.topics_enabled:
96c96
<         if line[0] not in ' \t' and line.find(':') < 0:
---
>         if line[0] in ' \t' or line.find(':') < 0:



This does work, and the messages now unshunt just hunky-dory.