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

[REBOL] Re: SoAnnoying

From: carl:rebol at: 28-Aug-2003 21:59

Basically, here's the code (greatly simplified) that can remove the email for you on your pop server: pattern: (fragment of the worm pattern) box: open pop://user:[pass--server] while [not tail? box] [ either find first box pattern [remove box] [box: next box] ] close box