in reply to Re^2: Using Sendmail.pm problem
in thread Using Sendmail.pm problem
There's no point in trying to "tweak something in the perl module" as the Perl module is almost certainly not being loaded successfully. The problem is not with the module, it is with how you installed the module and how your are subsequently trying to load it.
If it works on another server then perhaps the sysadmin on that other server has already installed it, so your broken attempt to change @INC is having no effect.
Try running this from the command line of the server where it works. This will tell you where the file is being loaded from:
perl -MMail::Sendmail -le 'print $INC{"Mail/Sendmail.pm"}'
"The first rule of Perl club is you do not talk about
Perl club."
-- Chip Salzenberg
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Using Sendmail.pm problem
by tariqahsan (Beadle) on Sep 22, 2006 at 15:08 UTC | |
by VSarkiss (Monsignor) on Sep 22, 2006 at 17:23 UTC | |
by tariqahsan (Beadle) on Sep 22, 2006 at 21:55 UTC | |
by davorg (Chancellor) on Sep 26, 2006 at 10:50 UTC | |
by davorg (Chancellor) on Sep 22, 2006 at 15:17 UTC |