
davorg
Thaumaturge
/ Moderator
Nov 12, 2003, 2:12 AM
Post #2 of 2
(279 views)
|
|
Re: [zakasa] Debugging CGI script
[In reply to]
|
Can't Post
|
|
That's a sendmail error. You might want to run it past your local sendmail administrator. Looking at the sensmail logs might give you more clues. There's a potential problem with this line:
To: sam\ @pterosaurtechnology.co.uk I don't think you want that space between \ and @. That might perhaps trigger an "unknown user" message. If you don't mind, I have a couple of other comments on your code: 1/ You don't have "use strict" or "use warnings" in you code. This might make things easier for you now, but you will suffer for it in the long term. 2/ You aren't using CGI.pm to parse your CGI input parameters. You'll find that much easier that your home-grown parsing routine readPostInput. -- Dave Cross, Perl Hacker, Trainer and Writer http://www.dave.org.uk/ Get more help at Perl Monks
|