Kenneth Porter wrote: >I should have read the error reply more closely. It gave me back this: > >Your mail for [EMAIL PROTECTED] could not be sent: > no list named "tribes2-pickups-pickups" is known by >lists.matureasskickers.net > >That should be easy to chase down.
In case you haven't got it already, the bug is that } elsif (! grep /^$cmd$/, @ValidActions) { # If an undefined action, restore list name $list = "$addr-$cmd"; $cmd = "post"; should be either } elsif (! grep /^$cmd$/, @ValidActions) { # If an undefined action, restore list name $list = "$list-$cmd"; $cmd = "post"; or } elsif (! grep /^$cmd$/, @ValidActions) { # If an undefined action, restore list name $list = $addr; $cmd = "post"; -- Mark Sapiro <[EMAIL PROTECTED]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan _______________________________________________ Mailman-Developers mailing list Mailman-Developers@python.org http://mail.python.org/mailman/listinfo/mailman-developers Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py Searchable Archives: http://www.mail-archive.com/mailman-developers%40python.org/ Unsubscribe: http://mail.python.org/mailman/options/mailman-developers/archive%40jab.org Security Policy: http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.027.htp