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

How to read all data from input?

 [1/2] from: petr::krenzelok::trz::cz at: 4-Dec-2001 7:34


Hi, I just finally found solution of how to instantiate rebol automatically, once email is delivered to some account. The problem is - I have to read-out all the input data. I tried it with small messages and it works, however, on larger one - 4 MB (I will not need it, but I just don't want to break some rules), nothing happens. I have a suspicion, that simply using "data: copy system/ports/input" at the beginning of script is not enough. However, even following code doesn't seem to work: buff: copy {} while [data: copy system/ports/input][append buff data] buff: head buff How to do it properly to be sure there are no data left at the input port? Thanks a lot, -pekr-

 [2/2] from: gchiu:compkarori at: 4-Dec-2001 20:45


> buff: copy {} > while [data: copy system/ports/input][append buff data] > buff: head buff > > How to do it properly to be sure there are no data left > at the input > port? >
This looks like the same problem as Cgi POST problem. You could try that solution. -- Graham Chiu