Tom Allison wrote:
I think I just got burned on Mail::Send.
I've been using it for months/years with no problem, but now I'm writing a web app and Taint won't let me use Mail::Send

Insecure $ENV{PATH} while running with -T switch at /usr/share/perl5/Mail/Mailer/sendmail.pm line 16.


The answer is: Don't use Mail::Send in a secure environment because it's trying to send email via local 'sendmail' type applications. It might be possible to use this with an SMTP type network connection but I couldn't find any documentation to that effect.

Mail::Mailer with an SMTP connection works fine.

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to