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

SoAnnoying

 [1/4] from: tofo::695online::com at: 28-Aug-2003 22:15


hey guys, SoBig is really hammering me. Has anyone written somthing that I can use to delete emails with *.pif and *.scr attachments on the server? Thanks, -- signature drinking: "glugluglug" -tom

 [2/4] from: philb:upnaway at: 29-Aug-2003 10:45


Hi Tom, Dont know if Grahams Cerberus has the functionality you want? but you could try this .... http://www.upnaway.com/~philb/philip/utils/headers.r or download delete-mail.r from http://www.agora-dev.org/forums/view.php?bn=rebol_prjnvxprod&key=1061826280 Cheers Phil p.s. Alway take care when deleting emails without downloading them .... === Original Message === hey guys, SoBig is really hammering me. Has anyone written somthing that I can use to delete emails with *.pif and *.scr attachments on the server? Thanks, -- signature drinking: "glugluglug" -tom

 [3/4] from: gchiu:compkarori at: 29-Aug-2003 15:59


On Thu, 28 Aug 2003 22:15:30 -0400 Tom Foster <[tofo--695online--com]> wrote:
>SoBig is really hammering me. Has anyone written >somthing that I can >use to delete emails with *.pif and *.scr attachments on >the server?
I'm not sure you will gain much as any script that can determine whether any of these attachments are present would have to download the email. You could use Cerebrus' mailbox manager to delete stuff off the server. It displays who it purports to come from, and the subject line, and size. And you can examine the header contents as well. -- Graham Chiu http://www.compkarori.com/cerebrus/

 [4/4] 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