[REBOL] Re: Server error: tcp 553
From: antonr:iinet:au at: 17-Apr-2003 14:18
Looks like a blacklist is in effect on your
mail server ? It could be that a server has
been blacklisted because of spam. I would
imagine that the condition should be temporary...
By the way, asking the user if they are connected
to the internet is not a very reliable way of
avoiding network errors.
I would rather catch the errors:
if error? set/any 'err try [
; send mail here
][
; I usually pop open a new window here, but anyway...
print [
"oh no, there was an error, not connected?"
mold disarm err
; extra details of the message here
]
]
And you are not interrupting the user with another
useless dialog box (unless there is a problem).
Anton Rolls.