From: Florian Effenberger [mailto:[EMAIL PROTECTED] > > > Network tests like RBL, SURBL, etc. probably won't work unless > > you upgrade your Net::DNS to something more recent. > > Okay, will try to do that. Anyone knows how I can tell SA to look > Perl modules up in one additional directory? I don't want to erase > the Debian package, but instead install the recent version in a > separate directory and tell SA to use it.
As far as I know, the module lookup is a function of the Perl install. In order to keep your current stuff along with the new stuff, you would need a second install of Perl. Why do you want to keep the old modules? I can understand not wanting to upgrade Perl itself, but unless you've got something that relies on Net::DNS that you are worried about breaking, I'd say just upgrade them. $ perl -MCPAN -e shell cpan> install Net::DNS That will download and install the current version for you. You will be walked through some configuration of the CPAN module if you haven't used it before. Bowie