Manya wrote:
>>Have you installed Net::SMTP, it comes as a part of libnet package.
>>If you have installed it check that the install directory is a
>>part of the @INC array.
>>
> 
> 
> How to check if a module is installed or not ?
> 

Depends on what system you are on.  In your original message the error 
was:

can not locate Net/SMTP.pm in <PATH>

Which tells you that it is looking for a file named "SMTP.pm" in a 
directory/folder called "Net" and it is looking in each of the locations 
listed in <PATH> so you have two methods....

on some unix systems you can do a > locate SMTP.pm
on windows systems you can use the regular find utilities and again 
search for SMTP.pm

Or you can manually list the files in each of teh locations of <PATH> 
and check for a "Net" directory/folder and if found check inside of it 
for SMTP.pm

Finally you could fire up CPAN (> perl -MCPAN -e shell on unix) and just 
try to install Net::SMTP and if it is already installed and up to date 
it will tell you, otherwise it will install it for you.......

http://danconia.org


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to