The fact that it is an email, will not cause a
problem in this case, and in many similar cases in rebol.
Rebol has no problem sticking together such types
together into a string or another type. Example;
Four datatypes on one line (url! email! word! and
finally string!):
join ftp:// [EMAIL PROTECTED] 'dom ".de"]
;== ftp://[EMAIL PROTECTED]
It all becomes a url!
Anton.
> >I 've a problem with ftp if the user is a emailadress. I.e.
> >
> >user: [EMAIL PROTECTED]
> >pass: 12345
> >
> >read ftp://user:[EMAIL PROTECTED]
> >
> >Any ideas? It seems that REBOL ignore the rest of the string when the
> >command found the first @. I tried %40 for @ too - but it doesn't work.
> >
> >Regards
> >--thomas
> >
> >
> I'm new to rebol, however i know that [EMAIL PROTECTED] will become
> automatically an email! and not a simple string!, so try this:
> user: "[EMAIL PROTECTED]"
>
> It should work...
--
To unsubscribe from the list, just send an email to rebol-request
at rebol.com with unsubscribe as the subject.