[Mailman-Developers] Another bug in current CVS

Dan Mick Dan.Mick@west.sun.com
Wed, 21 Jun 2000 15:20:16 -0700


scripts/mailowner calls HandlerAPI.DeliverToUser; in doing so, it must set msg.recips,
but doesn't.  

Here's a patch.

*** mailowner.orig      Wed Jun 21 15:13:54 2000
--- mailowner   Wed Jun 21 15:14:19 2000
***************
*** 76,81 ****
--- 76,82 ----
          msgdata = {'recips' : recips,
                     'toadmin': 1,
                     }
+       msg.recips = recips
          enqueue = HandlerAPI.DeliverToUser(mlist, msg, msgdata)
          if enqueue:
              msg.Enqueue(mlist, newdata=msgdata)


What's going on?  How am I running into all this stuff?  I thought others were
running the current CVS?