Cannot delete message

  • Thread starter James Robertson
  • Start date
J

James Robertson

Dear All,

I am trying to delete a message with a 100Mb atatchment from my
inbox. The delet button does not work, nor can I delete the whole
outbox and start over. I have rebuilt the datbase. All I get when I click
the delete button is the spinning beach ball. I let that run for 30
minutes before doing a force quit.

Any help appreciated.

James
 
D

Dave Cortright

Dear All,

I am trying to delete a message with a 100Mb atatchment from my
inbox. The delet button does not work, nor can I delete the whole
outbox and start over. I have rebuilt the datbase. All I get when I click
the delete button is the spinning beach ball. I let that run for 30
minutes before doing a force quit.

Any help appreciated.

James

Try running this script with that message selected:

tell application "Microsoft Entourage"
set cm to current messages
repeat with msg in cm
delete msg
try
delete msg
end try
end repeat
end tell
 
Top