I have noticed that regardless of whether -bouncer was specified or not, it ran in test mode. To correct this, make the following changes:
line 65: change: $bouncemode =0; to: $bouncemode = 1;
It seems in some versions of perl (or indeed all?) it's similar to php - setting a variable with a 0 (zero) in effect wipes that variable, changing it to a 1 sets it so that the if($bouncemode) works correctly.
|