in reply to preventing malicious mail attacks
You really ought to make an attempt to see what's actually there before deleting it, or you won't be able to guarantee that whatever change you make would keep this from happening again.use Data::Dumper; print Dumper grep /xung03/, keys %emails;
Update: I see you seem to be dumping it in html. That will disguise the actual spacing. Try:
print "<pre>\n", Dumper(grep /xung03/, keys %emails), "\n</pre>\n";
|
|---|