[Mailman-Users] Re: max_message_size description suggested extension

2020-05-19 Thread Yasuhito FUTATSUKI
t]). >> >> Comments ? > > > It this stage in the life cycle of Mailman 2.1 there will be no changes > of this nature to messages because of i18n issues whenever a translated > string is changed. To change English messages, we can add message catalogue for 'en' (locally

Re: [Mailman-Users] Massive amounts of bounces after setting munge_from for dmarc compliance

2019-11-19 Thread Yasuhito FUTATSUKI
ERS = No So, both are equivalent. Cheers, -- Yasuhito FUTATSUKI -- Mailman-Users mailing list Mailman-Users@python.org https://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://wiki.list.org/x/AgA3 Security Policy: http://wi

Re: [Mailman-Users] Frustrating web page issues

2019-04-24 Thread Yasuhito FUTATSUKI
, referer: http://autox.team.net/ It seems that the lisinfo CGI is executed as FastCGI. Is it supported? -- Yasuhito FUTATSUKI -- Mailman-Users mailing list Mailman-Users@python.org https://mail.python.org/mailman/listinfo/mailman-users Mailman

Re: [Mailman-Users] members not receiving their own messages.

2018-08-21 Thread Yasuhito FUTATSUKI
Putting aside that it is useful or harmful, there is a change set to do it, in tkikuchi's branch. Perhaps it can be applied against 2.1.29. https://bazaar.launchpad.net/~tkikuchi/mailman/2.1-japan/revision/1346 -- Yasuhito FUTATSUKI -- Mailman-Users m

Re: [Mailman-Users] "Freezing" mailing list

2018-06-02 Thread Yasuhito FUTATSUKI
ailman 2.1 and already this value is incompatible with current version. (to migrate list config data file from modified version to upstream, make sure its subscribe_policy should be other than 'forbid') -- Yasuhito FUTATSUKI -- Mailman-Use

Re: [Mailman-Users] "Freezing" mailing list

2018-05-29 Thread Yasuhito FUTATSUKI
On 05/30/18 02:00, Mark Sapiro wrote: On 05/29/2018 09:45 AM, Phil Stracchino wrote: On 05/29/18 10:20, Tatsuo Ishii wrote: Hi, I would like to "freeze" an existing mailing list: I want to keep the mailing list but I want no one newly subscribe the list. Can you please anyone tell me how I

Re: [Mailman-Users] Stuck OutgoingRunner

2018-02-06 Thread Yasuhito FUTATSUKI
On 02/07/18 01:01, Mark Sapiro wrote: On 02/06/2018 03:51 AM, Sebastian Hagedorn wrote: --On 4. Februar 2018 um 12:54:43 +0900 Yasuhito FUTATSUKI <futat...@poem.co.jp> wrote: As far as I read the code, if OutgoingRunner catch SIGINT during waiting for response from the MTA, the

Re: [Mailman-Users] Stuck OutgoingRunner

2018-02-03 Thread Yasuhito FUTATSUKI
nd waiting for response until receiving response or connection closing (from MTA side or by error). Thus it cannot reach to the code to exit if the connection is kept alive and MTA send no data. -- Yasuhito FUTATSUKI <futat...@poem.co.jp> -- Mailman-Us

Re: [Mailman-Users] Chinese characters spam filter?

2016-07-13 Thread Yasuhito FUTATSUKI
t is better to hold string attributes of mm_cfg and mlist class > as Unicode than site_language code or list's preferred language code > encoded (but I know it is so trouble to do so). And then on pattern matching on message pipeline is done with Unicode rather than list's prefered language.

Re: [Mailman-Users] Chinese characters spam filter?

2016-07-12 Thread Yasuhito FUTATSUKI
On 07/13/16 03:47, Mark Sapiro wrote: On 07/12/2016 12:03 AM, Stephen J. Turnbull wrote: Mark Sapiro writes: > On 7/8/16 6:04 PM, Yasuhito FUTATSUKI wrote: > > > > How about using 'backslashreplace' instead of 'replace' to encode to > > list's preferred languag

Re: [Mailman-Users] Chinese characters spam filter?

2016-07-09 Thread Yasuhito FUTATSUKI
){4} (CJK Unified Ideographs Extension uses code point scope >= u+2) Of course, you can specify code point scope more pricisely, not to match other than Chinese characters. -- Yasuhito FUTATSUKI <futat...@poem.co.jp> -- Mailman-Users

Re: [Mailman-Users] Chinese characters spam filter?

2016-07-09 Thread Yasuhito FUTATSUKI
omething. uvalue += unicode(frag, 'iso-8859-1', 'replace') -headers += '%s: %s\n' % (h, uvalue.encode(cset, 'replace')) +headers += '%s: %s\n' % (h, uvalue.encode(cset, 'backslashreplace')) return headers -- Yasuhito FUTATSUKI <futat...@poem.co.jp>