28 Mar
2008
28 Mar
'08
11:29 p.m.
Kenneth Porter wrote:
I should have read the error reply more closely. It gave me back this:
Your mail for tribes2-pickups@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@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan