[Mailman-Developers] mm-handler 2.1.10 (was: before nextrelease:disable backscatter in default installation)

Mark Sapiro mark at msapiro.net
Sat Mar 29 00:29:24 CET 2008


Kenneth Porter wrote:

>I should have read the error reply more closely. It gave me back this:
>
>Your mail for tribes2-pickups at lists.matureasskickers.net 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 <mark at msapiro.net>        The highway is for gamblers,
San Francisco Bay Area, California    better use your sense - B. Dylan



More information about the Mailman-Developers mailing list