On Mon, 30 Jul 2001, Adam Carson wrote:

> I have been trying to get a version of sendmail to send results from a
> form, and after finally getting all my addresses and formatting right,
> my mailserver gives me an error about not using the HELO protocol:
>
> X-Authentication-Warning: mail.server.IP.address:
>       [the.user's.IP.address] didn't use HELO protocol
>
> The code from my script that mentions anything about HELO is:
>
>     sendSMTP(1, "HELO\n");
>     sendSMTP(1, "MAIL FROM: <$mailFrom>\n");
>     sendSMTP(1, "RCPT TO: <$mailTo>\n");
>     sendSMTP(1, "VRFY\n");
>     sendSMTP(1, "DATA\n");

You shouldn't have to be using anything that low-level to send email from
a script!  Are you actually binding to a socket to do this?

-- Brett


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to