Subject: | Mail::SpamAssassin::Client |
There is a bug in /usr/lib/perl5/site_perl/5.8.5/Mail/SpamAssassin/Client.pm
In function "ping". The function always returns "0" - even if it can
ping SpamAssassin.
The reason is there:
return 0 unless ($resp_msg eq 'PONG'); (line 425)
$resp_msg is something like "PONG\n" - so, the test fails. You can solve
the problem for example this way:
return 0 unless ($resp_msg =~ '^PONG');
Regards
Tony