[REBOL] Re: Email setup problems.....???
From: andy:flyingcat at: 1-Oct-2002 22:43
A 530 error sounds like an SMTP security error, a request to negotiate a
Transport Level Security connection. In another email Brett mentioned
the "read mailbox before send" possibility. If that works, then you're
set.
Otherwise, I did see a mention of another possibility on a rebol
page...( http://www.rebol.com/docs/ssl.html#sect4. )
After opening a port with ssl:// or tls:// the SSL/TLS protocols are
NOT negotiated automatically. Initially the port sets up the physical
TCP connection only. In order to initiate the SSL/TLS negotiation use
the following call after opening the port:
set-modes port [secure: true]
After this call returns all subsequent data exchanged through the port
is sent in SSL/TLS-encrypted form
---
Now, I'm not quite sure exactly what you do at this point; possibly you
can find the smtp port opened, and put in into secure mode.
Andy