I discovered, after much mucking around, that the problem is that 
Mailman requires all of the form fields to be submitted.  So unsubscribing 
with just 

    @fields = ( unsubscribees => "$email", 
                      setmemberopts_btn => "Submit Your Changes",
                    ) ;

Doesn't work. What does work is:

    @fields = ( send_unsub_ack_to_this_batch => 0,
                     send_unsub_notifications_to_list_owner => 1 ,
                    unsubscribees => "$email", 
                    setmemberopts_btn => "Submit Your Changes",
                    Content => { unsubscribers_upload => "" },
                   ) ;

YAY!   /Bernie\



                 Bernie Cosell
         ber...@fantasyfarm.com
-- Too many people; too few sheep --

------------------------------------------------------
Mailman-Users mailing list Mailman-Users@python.org
https://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: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Reply via email to