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

[REBOL] Re: POP-3 command TOP not supported, what to do?

From: gjones05:mail:orion at: 6-Feb-2001 6:29

Hi, Martin, Here was my quick hack that version that I brewed up yesterday, but I hesitated to send it after seeing Kevin's resubmission of Jeff's more definitive solution. Today, I'm thinking what the heck, it works, I'll send it anyway. i-buf: make string! 1002 pop-port: open pop://USER:[PASS--pop--server--dom] write-io pop-port "TOP 1 0" 1000 read-io pop-port i-buf 1000 write-io pop-port "QUIT" 1000 print i-buf If you wish to see more feedback messages while tinkering, be sure to turn on tracing with: trace/net on Just my 2 cents, which is worth 2 cents *before* inflation :-) --Scott