Re: [Mailman-Users] custom handler

2012-02-15 Thread Mark Sapiro
Mark Sapiro wrote: > >Also, I didn't mention this previously, but the >sending process in SMTPDirect.py will add Sender: and Errors-To: >headers and set the envelope sender to dlms_1-bounces@list_domain. If >you don't want that, you can set a different address in your handler >by setting > >msg

Re: [Mailman-Users] custom handler

2012-02-15 Thread Mark Sapiro
George, Harry G wrote: >I'm stuck on the basic development cycle for "custom handlers". Symptom is >that it is remembering an early attempt and not loading the latest version of >my handler. Also, I'm now trying to use syslog (to post or to error) as a >way to get/read/understand msg and

[Mailman-Users] custom handler

2012-02-15 Thread George, Harry G
I'm stuck on the basic development cycle for "custom handlers". Symptom is that it is remembering an early attempt and not loading the latest version of my handler. Also, I'm now trying to use syslog (to post or to error) as a way to get/read/understand msg and msgdata -- is there a better

Re: [Mailman-Users] Custom handler applied to digest tofilter excessive quoted text?

2009-08-09 Thread John Williams
On Fri, Aug 7, 2009 at 3:40 AM, wrote: > By the way John... I'm guessing you sent your post twice becaqsue you > didn't realize that when posting from your gmail account, you won't see > your own posts? It considers the message you 'Sent' and the one the > list sends as 'duplicates', so hides (o

Re: [Mailman-Users] Custom handler applied to digest tofilter excessive quoted text?

2009-08-07 Thread Mark Sapiro
Stephen J. Turnbull wrote: >John Williams writes: > > > Is it possible to create a custom handler for digests only? > >Yes. The standard pipeline contains a handler named "ToDigest" or >something like that. You edit the pipeline either in mm_cfg.py (for >global effect) or create a local pipeline

Re: [Mailman-Users] Custom handler applied to digest to filter excessive quoted text?

2009-08-07 Thread tanstaafl
On 8/7/2009, Stephen J. Turnbull (step...@xemacs.org) wrote: >> Is it possible to create a custom handler for digests only? >> I want a mail list that automatically strips out duplicated quoted text in >> digests, > Yes. Wow, I'd be interested in this if you get it working... and I'd think the

[Mailman-Users] Custom handler applied to digest to filter excessive quoted text?

2009-08-06 Thread Stephen J. Turnbull
John Williams writes: > Is it possible to create a custom handler for digests only? Yes. The standard pipeline contains a handler named "ToDigest" or something like that. You edit the pipeline either in mm_cfg.py (for global effect) or create a local pipeline with bin/with_list (this has some

[Mailman-Users] Custom handler applied to digest to filter excessive quoted text?

2009-08-06 Thread John Williams
Hi all, Is it possible to create a custom handler for digests only? I want a mail list that automatically strips out duplicated quoted text in digests, so the same quoted text doesn't appear over and over. Such a thing doesn't appear to exist in any mailing list software, so I'm looking for th

[Mailman-Users] Custom handler applied to digest to filter excessive quoted text?

2009-08-06 Thread John Williams
Hi all, Is it possible to create a custom handler for digests only? I want a mail list that automatically strips out duplicated quoted text in digests, so the same quoted text doesn't appear over and over. Such a thing doesn't appear to exist in any mailing list software, so I'm looking for the s

Re: [Mailman-Users] Custom handler error

2007-12-13 Thread Mark Sapiro
Meenal Pant wrote: >I am trying to implement a custom handler and referring to >http://www.python.org/cgi-bin/faqw-mm.py?req=edit&file=faq04.067.htp for >doing so. I insert the > > GLOBAL_PIPELINE.insert(GLOBAL_PIPELINE.index('Moderate'), 'MyHandler') > >line in mm_cfg.py and restart the qrunner

Re: [Mailman-Users] Custom handler error

2007-12-13 Thread Brad Knowles
On 12/13/07, Meenal Pant wrote: > However the handler does not get inserted in Defaults.py Defaults.py is a Python program that creates certain system-wide defaults, some of which can (and should) be over-ridden in mm_cfg.py. Thus, nothing you do in mm_cfg.py is going to get "inserted" into D

[Mailman-Users] Custom handler error

2007-12-13 Thread Meenal Pant
I am trying to implement a custom handler and referring to http://www.python.org/cgi-bin/faqw-mm.py?req=edit&file=faq04.067.htp for doing so. I insert the GLOBAL_PIPELINE.insert(GLOBAL_PIPELINE.index('Moderate'), 'MyHandler') line in mm_cfg.py and restart the qrunner as /usr/lib/mailman/bin/ma