Pierrox wrote: > >But when it comes to Digests... >- if a user gets Mime Digests, he can read the text, but each message to the >list is also present as an attachement. Not fabulous...
If you use an MUA that understands MIME typt multipart/digest, these will be seen as messages, not attachments. >- if a user gets Plaintext Digests, the text is garbled. Each accented >letter, be it an =E9, =E8 or =E0 or whatever, is replaced with a "?" character. > >Not exactly usefull, and that's what I'm trying to fix. 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. Or, if you really need it to be English, you can put the following in mm_cfg.py def _(s): return s add_language('en', _('English (USA)'), 'iso-8859-1') del _ -- Mark Sapiro <[EMAIL PROTECTED]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ Mailman-Users mailing list Mailman-Users@python.org http://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: http://mail.python.org/mailman/options/mailman-users/archive%40jab.org Security Policy: http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.027.htp