View Single Post
Old 08-30-2002, 09:08 PM   PM User | #3
Inci
New Coder

 
Join Date: Aug 2002
Location: Moscow, RU
Posts: 23
Thanks: 0
Thanked 1 Time in 1 Post
Inci is an unknown quantity at this point
Hello,

the first thing i noted:
$MailProgram = '/usr/sbin/sendmail-t';
which is completely wrong -
$MailProgram = '/usr/sbin/sendmail -t';

other thing i noted:
$MailProgram .= ' -t' if $MailProgram =~ /sendmail\Z/; # This line adding ' -t ' to sendmail when it's just /usr/sbin/sendmail - but you have defined your sendmail with -t at the top why to add this line?

hope this will help you
Inci is offline   Reply With Quote