Mark Sapiro wrote: > 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.
The above suggestion will not work. It will only copy to the list admins/moderators messages which are automatically rejected during processing such as a non-member post with generic_nonmember_action = Reject. It will not copy rejections from the admindb interface. -- Mark Sapiro <[email protected]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ Mailman-Users mailing list [email protected] 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
