Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: retrieve email

From: petr:krenzelok:trz:cz at: 26-Aug-2003 10:00

[marcleon--ya--com] wrote:
>I am new to Rebol and I am trying to write a pop routinefor multiple >accounts > >however I have the following prolem >this type of account works > mes: read pop://marcleon:[password--pop--hotpop--com] >but this account doesn't > mes: read pop://[marcleon--ya--com]:[password--pop--ya--com] > >is there any solution to this ? >thx >
@ is not allowed in url name part. You can either use multiple-line scheme aproach, or you can install quick fix into your user.r file: net-utils/url-parser/user-char: union net-utils/url-parser/user-char make bitset! #"@" ...that way your above aproach should work ... cheers, -pekr-