Questions and Answers for users of ASSP Anti-Spam SMTP Proxy <[email protected]> schreibt: >The thing is, I feel this could be an ASSP issue. There is >nothing that says that perl must list in /usr/bin/perl, but ASSP >assumes it is there, and that modules are also in a semi popular >location.
The @INC array is a list of directories ASSP searches when attempting to load modules. To display the current contents of the @INC array:perl -e "print join(\"\n\", @INC);" The following two methods may be used to append to Perl's @INC array: 1. Add the directory to the PERL5LIB environment variable.2. Add use lib 'directory'; in your Perl script. ------------------------------------------------------------------------------ This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story. http://p.sf.net/sfu/sf-spreadtheword _______________________________________________ Assp-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/assp-user
