Paul Key wrote:
>
>I have a list with more than one moderator.  When one moderator rejects 
>a post to the moderated list I would like a copy of the rejected email 
>and the reason for rejection sent to the other moderators.  I have 
>looked at the "Additionally, forward this message to:" option on the 
>"Posting Held for Approval" but this only forwards the rejected email 
>and not the reason for rejection. Is there a way of forwarding both the 
>email and the reason for rejection to the other moderators?


Not automatically. The moderator would have to manually compose a
message to LISTNAME-owner@... indicating the message and the reason.

To do this automatically, you could modify the code in the
BounceMessage() method in Mailman/Bouncer.py by changing


        # Currently we always craft bounces as MIME messages.
        bmsg = Message.UserNotification(msg.get_sender(),
                                        self.GetOwnerEmail(),
                                        subject,
                                        lang=self.preferred_language)

to

        # Currently we always craft bounces as MIME messages.
        bmsg = Message.UserNotification([msg.get_sender(),
                                         self.GetOwnerEmail()],
                                        self.GetOwnerEmail(),
                                        subject,
                                        lang=self.preferred_language)

This will include the LISTNAME-owner address in the To: of the
rejection notice. However, this will be a global change affecting all
lists in the installation.

-- 
Mark Sapiro <m...@msapiro.net>        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://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Reply via email to