Please bottom post
> I got it. I never thought indentation could cause sendmail to mess up.
> As a beginner, I need you try
> everything possible to know their pros and cons. Next time - I may
> consider using a CPAN module.
> :-)
>
> Thanks
I would disagree here, as a beginner you shoul
I got it. I never thought indentation could cause sendmail to mess up.
As a beginner, I need you try
everything possible to know their pros and cons. Next time - I may
consider using a CPAN module.
:-)
Thanks
Wiggins d'Anconia wrote:
B. Fongo wrote:
It's my first time to use sendmail. I want
procmail: Executing "/root/confirm.pl"
sendmail: warning: the Postfix sendmail command has set-uid root
file permissions
sendmail: warning: or the command is run from a set-uid root process
sendmail: warning: the Postfix sendmail command must be installed
without set-uid root file permissions
--
> use Mail:Sendmail;
Try
use Mail::Sendmail; # Two ::, not one
-Akshay
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
I think you should have to use
use Mail::Sendmail
Bye.
On Dec 13, Lance Prais said:
>use Mail:Sendmail;
use Mail::Sendmail;
Notice the doubled colon.
>%mail = ( To =>'[EMAIL PROTECTED]',
>From=> 'Nobody',
>Subject => 'Error',
>Message => "my $data = for (1..21)"
> );
I don't think M
"my $data = for (1..21)"
>);
> sendmail(%mail) or die $Mail::Sendmail::error;
> print "OK. Log says:\n", $Mail::Sendmail::log;
>
> Error message:
> syntax error at email_test line 4, near "use Mail:"
> Execution of email_test aborted du
ROTECTED]',
From=> 'Nobody',
Subject => 'Error',
Message => "my $data = for (1..21)"
);
sendmail(%mail) or die $Mail::Sendmail::error;
print "OK. Log says:\n", $Mail::Sendmail::log;
Er