> From: Luis HernĂ¡n Otegui [mailto:[EMAIL PROTECTED] > > Hi, list, I have a cron job running in order to learn from each user's > HAM and SPAM subdirs. Whenever it runs, it complains like this: > > Subroutine FuzzyOcr::O_NONBLOCK redefined at > /usr/share/perl/5.8/Exporter.pm line 65. > at /usr/lib/perl/5.8/POSIX.pm line 19 > > Any hints on how to avoid this nag?
Edit /usr/local/spamassassin/FuzzyOcr.pm and make the following change: < use POSIX; --- > use POSIX qw(SIGTERM);