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

[REBOL] Re: open pop port

From: petr::krenzelok::trz::cz at: 16-May-2003 8:59

Louis A. Turk wrote:
> Hi rebols, > > ** Access Error: Cannot connect to coxinet > ** Where: open-proto > ** Near: open pop://[username--coxinet]:[passoword--pop--coxmail--com] > > The problem is that cox requires the complete email address for user > ID. I thought I conquered this problem before, but... > > How do I fix this? > > Louis >
very simply - dilema between practical usability and standards. I remember Holger stating that using @ char for username is not valid. I would prefer if RT would act in a more practical way and such char was allowed in a parser, to prevent problems as yours ... add following lines into your user.r file and you are done: net-utils/url-parser/user-char: union net-utils/url-parser/user-char make bitset! #"@" ; ... and if you want to allow # char to be used in path part net-utils/url-parser/path-char: union net-utils/url-parser/path-char make bitset! #"#" hopet-this-helps, cheers, -pekr-