vote up -3 vote down star

I'm using this CGI script.

CGI is working, but I cannot sent emails from this form in CentOS. Please help me? Do I have to set-up anything for it? or MTA?

flag

41% accept rate
It would help to post the relevant bit of the code right here. – Telemachus Jun 28 at 1:57

3 Answers

vote up 1 vote down

Perl comes with excellent documentation that is accessible from the command line using perldoc on your computer. To get help on perldoc:

$ perldoc perldoc

Table of contents

$ perldoc perltoc

Help on a function

$ perldoc -f open

Search FAQ list for a keyword:

$ perldoc -q mail
$ perldoc -q "How do I send mail"

Depending on the OS/distribution combination, an HTML version of the documentation might also be installed. You should skim through the FAQ and the main parts at least once a year, every year.

I do not think it is a good idea for us to download some arbitrary binary posted somewhere. If you are going to post code, post it here. As for your question, the FAQ might help you begin to debug: How do I send mail?

link|flag
vote up 1 vote down

You shold check sendmail command

$ which sendmail
$ ls /usr/bin/sendmail

and , Can you send email with sendmail command?

link|flag
vote up 1 vote down

Hm, kind of hard to check. It appears fairly generously commented, unfortunately in Japanese :-/.

From what I can see, it expects you to set variable $server to be a SMTP server that accepts outgoing mail. So you'll need (access to) an SMTP server.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.