That's a pretty simple one. Your mail server seems to think you don't=20
have "relay" privs. This could be because you have the "from" header set=20
to the person's addy who fills out the form. If so, and you don't have=20
the option to decide who gets to relay, you could always put the email=20
addy in the Reply-To: header instead.

Eric

Carlos Lorenz wrote:

> Hi list,
>=20
> I want this REBOL CGI script hosted at server "A" to read mail box at s=
erver=20
> "B"
> but I get this error:
>=20
>=20
> ** User Error: Server error: tcp
> 550-(lucas.topserverbr.com<http://lucas.topserverbr.com>)
> [64.247.16.72 <http://64.247.16.72>] is currently not permitted to rela=
y **=20
> Near: insert port reduce data
>=20
>=20
> I need some help to unserstand what's going on.
>=20
> Follows the script
>=20
>=20
> REBOL[]
>=20
> [EMAIL PROTECTED] mail.linux25.com <http://mail.linux25.com>]
>=20
> header: make system/standard/email [
> From: [EMAIL PROTECTED]
> Subject: "Revista Eletr=F4nica - Veja Hoje na TV"
> Organization: "Unidade Lorenz Ltda."
> ]
>=20
> ; setup da caixa postal
> mailbox: [
> scheme: 'pop
> host: "pop.sao.terra.com.br <http://pop.sao.terra.com.br>"
> user: "[EMAIL PROTECTED]"
> pass: "pass"
> timeout: false
> ]
>=20
>=20
> mail: open mailbox
>=20
> forall mail [
>=20
> message: import-email first mail
>=20
> if find message/subject "hi" [
> send/header message/from "I got your message. I'll Write back soon" hea=
der
> ]
>=20
> remove mail
>=20
> ]
>=20
> Thanks=20
>=20
-- 
To unsubscribe from the list, just send an email to 
lists at rebol.com with unsubscribe as the subject.

Reply via email to