thank you very much adamowski, that gave me the right idea, and i've reported a mail, yay. what i realised was that i had to use the line:
perl myscript.pm
to execute my script, which was just:
use WWW::Mechanize::SpamCop;
$s = WWW::Mechanize::SpamCop->new(
login => 'MY_SPAMCOP_EMAIL_ADDRESS',
passwd => 'MY_SPAMCOP_PASSWORD'
);
$s->report_one;
$s->report_all;
to think it was that simple. it would have really helped if another section like "execution" was was added alongside the "installation" section of WWW-Mechanize-SpamCop, then i would have been under way a lot sooner.
|