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

[REBOL] Stupid question from a newbie

From: FC2COLLINS::peoplepc::com at: 19-Feb-2006 21:24

I have this little bit of code : mailbox: read pop://XXX:XXXXX-mail.XXX.net ctr: 0 foreach message mailbox [ print pick mailbox ctr wait 0:00:5 remove at mailbox ctr ctr: ctr + 1 ] It seems to work perfectly happily, however it always skips the first message. How do I make it read the first message in the list?