Using new Spamassassin User-Interface with Spamassassin version 3.0

I was in the same boat as you Torp (same errors)

I searched the forum and found the solution in a post by l0rdphi1


wget http://cpan.uwinnipeg.ca/cpan/authors/id/A/AN/ANDK/CPAN-1.76.tar.gz
tar xzf CPAN-1.76.tar.gz
rm CPAN-1.76.tar.gz
cd CPAN-1.76
perl Makefile.PL
make
make test
make install


Then you can do the normal perl -MCPAN -e shell
 
Last edited:
pod2man

To fix that error regarding pod2man

I had to do edit the file


/etc/sysconfig/i18n

and change one line

from
LANG="en_US.UTF-8"

to
LANG="en_US"

Then totally log off the server (disconnect your SSH session)

and log back in and run the
perl Makefile.PL
{from within the downloaded temp install SpamAssassin dir}


I found this bug after much googling

these pages in particular were helpful in diagnosing the bug

http://sourceforge.net/mailarchive/message.php?msg_id=7532695

https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=87682
 
Back
Top