line 118 in sender_permitted_from, it needs something
like this to prevent the "@" from causing an error on line
119--may as well put it at line 97, too.
$comment = ( /\x40/ ? ( s/\x40/'\x40'/ and y/'/'/s and $_ ) : $_ )
for $comment ;
Bob Dodds wrote:
sender_permitted_from has a fatal error at line 119.......
it logs $result and $comment, showing
both ARE defined, but we discover in the output that
perennial bugaboo, the "@", in the comment string.
The error is saying we have an undefined ARRAY in
the comment string, and we "can't call method add
on an undefined" array, now can we?