Rob Jackson wrote: >I already have a Message Board set up with a dummy user account, which is >actually the mailing list address. This user is set to receive ever post to >the message board in e-mail format. I know I can just add the from: email >address to the list of subscribers, but with many lists, and new lists being >created, I really want it to be a global accept. I also don't want the list >admins to be able to remove this account from the subcribers.
See <http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq04.067.htp> on implementing a custom handler in Mailman. What you want is a handler early in the pipeline, probably just before or after the existing 'Approve' handler and before 'Moderate' in any case, that will recognize based on some set of message attributes (header values, etc.) a message from the Message Board and set 'approved':1 in the message metadata. It should also check x-beenthere: headers for loops, and maybe set 'adminapproved':1 as well if you want such messages to bypass emergency moderation. Look at the Mailman/Handlers/Approve.py for a more detailed idea of what is required. -- 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