in reply to Re: uninitialized value in concatenation
in thread uninitialized value in concatenation
Possibly relates to the opening lines of the script</>
#!/usr/bin/perl -w use strict; my ($email_400, $email_500, $unfriendly_error, $redirect_to); my $main_domain=getpwuid($<); my @sendmail_path=(qw(/usr/sbin/sendmail -i -odb), "-fdcm\@nineone.org +"); ## Uncomment the below two lines to get emailed regarding the respecti +ve ## errors. $email_400="dcm\@$main_domain"; $email_500="dcm\@$main_domain";
should I give the whole script - 110 lines?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: uninitialized value in concatenation
by ikegami (Patriarch) on Nov 16, 2010 at 20:44 UTC |