Hi All,
Got a problem using a reference to a main array within a package.
Why does this not work:
my $smtp = Net::SMTP->new(\@main::SMTPServerList, Timeout => $main::SMTPServerTimeout);
and this work:
my @templist = @main::SMTPServerList;
my $smtp = Net::SMTP->new(\@templist, Timeout =>...