I am trying to set up Mime::Lite on a shared remote server with numerous standard modules missing. Client doesn't want to move to another ISP and ISP is reluctant to install in case of destablising other users. I am trying to load the module locally. The module loads but refuses to send any emails so I did a dependancy check and there were numerous moudules missing. The following list is all the dependancies which I introduced 1 at a time to the script and installed the ones which forced an error. The 3 in red, despite being installed, force an error but I do not have access to the error logs.
This script is a simple email script which works on other servers so I can only assume that I still have something missing - any suggestions?
Keith
This script is a simple email script which works on other servers so I can only assume that I still have something missing - any suggestions?
Code:
use MIME::Lite;
use ExtUtils::MakeMaker;
use File::Spec;
use Email::Date::Format;
use Test::More;
use Time::Local;
use MIME::QuotedPrint;
use MIME::Types;
[red]use Test::Pod;[/red]
[red]use Pod::Simple;[/red]
use Pod::Escapes;
use overload;
use constant;
use Text::Wrap;
use Test;
use Mail::Address;
use Net::SMTP;
use IO::Handle;
[red]use Date::Format;[/red]
Keith