[Mailman-Users] Character encoding problems with digest option

2003-08-31 Thread Guillaume Rousse
Hello. I'm managing several mailing list with mailman 2.1.2, but one of them is especially problematic, since some users use exotics charset such as utf-8. As a matter a consequence, it frequently breaks with this message in the logs: Aug 31 22:03:16 2003 (12355) Traceback (most recent call las

Re: [Mailman-Users] Character encoding problems with digest option

2003-09-01 Thread Tokio Kikuchi
Hi, Guillaume Rousse wrote: File "/var/lib/mailman/Mailman/Handlers/Scrubber.py", line 316, in process t = unicode(t, 'ascii', 'replace').encode('ascii') Find above line and change to t = unicode(t, 'ascii', 'replace') Encode will be done more safely in later part. -- Tokio Kikuchi, tk

Re: [Mailman-Users] Character encoding problems with digest option

2003-09-04 Thread Guillaume Rousse
Ainsi parlait Tokio Kikuchi : > Hi, > > Guillaume Rousse wrote: > > File "/var/lib/mailman/Mailman/Handlers/Scrubber.py", line 316, in > > process t = unicode(t, 'ascii', 'replace').encode('ascii') > > Find above line and change to > t = unicode(t, 'ascii', 'replace') > > Encode will be done

Re: [Mailman-Users] Character encoding problems with digest option

2003-09-04 Thread Tokio Kikuchi
Hi, Guillaume Rousse wrote: Thanks for your reply, it worked. Does it means that this change is enough to fix the problem, or is your Scrubber.py patch also needed ? You will become happier if you apply the patch. In latter case, why does it not also include this part ? It came after I last