Mark Sapiro wrote: > >I think your best solution if you have access to the Mailman >installation and you don't want to train the users is to implement a >custom handler (see ><http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq04.067.htp>) >to remove all headers that request receipts or acknowledgements from >the list posts.
I just looked at the existing Mailman/Handlers/Cleanse.py handler with the thought of creating an example of a custom handler to remove receipt requests, and I was reminded that we already try to remove any headers that request this. This is what we currently do. # Some headers can be used to fish for membership del msg['return-receipt-to'] del msg['disposition-notification-to'] del msg['x-confirm-reading-to'] # Pegasus mail uses this one... sigh del msg['x-pmrqc'] So the question is, what header(s) are your users using to request receipts that aren't among those above? Tell us what they are, and we will remove them effective with Mailman 2.1.10. -- 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