[Mailman-Users] Problem with Digest containing accented letters

2006-02-14 Thread Pierrox
Hello, My knowledge isn't great, but I managed to install mailman 2.1.7 at home, on Mac OSX. Everything seems fine, appart from the digest... I'm still doing tests at the moment. When I post tests containing accented letters in the body (I write in French), those get thru the HMTL-Plaintext

Re: [Mailman-Users] Problem with Digest containing accented letters

2006-02-14 Thread Pierrox
Le 14/02/06 18:43, « Mark Sapiro » [EMAIL PROTECTED] a écrit : It sounds like your list language is English, the character set for which in Mailman is us-ascii, so the digest is sent in us-ascii which doesn't support those characters, thus the '?'. Try setting the list language to French.

Re: [Mailman-Users] Problem with Digest containing accented letters

2006-02-14 Thread Pierrox
you can put the following in mm_cfg.py def _(s): return s add_language('en',_('English (USA)'), 'iso-8859-1') del _ It worked perfectly! I had tried changing the language of the list in the web interface earlier, but without any success. That was the trick! Thanks,