Gregg Irwin wrote:
> Hi Carlos,
>
> CL> Is there a way to access an FTP account where usersname has "@" in it?
>
> CL> This gives me error:
>
> CL> read ftp://[EMAIL PROTECTED]:[EMAIL PROTECTED]/path_to_file/
>
> Have you tried this, scheme block, approach?
>
> read [
>     scheme: 'ftp
>     host: domain.com
>     user: [EMAIL PROTECTED]
>     pass: "password"
> ]
>   
or a pseudo fix to url-parser put into user.r :-)

net-utils/url-parser/user-char: union net-utils/url-parser/user-char 
make bitset! #"@"
net-utils/url-parser/path-char: union net-utils/url-parser/path-char 
make bitset! #"#"

then even url scheme version should work ...

-pekr-

> -- Gregg
>
>   

-- 
To unsubscribe from the list, just send an email to 
lists at rebol.com with unsubscribe as the subject.

Reply via email to