Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Try to fix it - failed' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Try to fix it - failed
Authored by: hamarkus on Apr 30, '04 06:25:00AM
With this script running now running for the second day, my trash was filling up with tons of duplicates of these mails since Mail is not deleting them from the server. Since Mail's settings are 'Remove copy from server after retrieving a message' 'When moved from Inbox', I tried to change the line
 delete eachMessage 
into
 move eachMessage to trash 
but even if invoke the applescript directly, it doesn't do anything, whereas the original script trashes the message. What is wrong with my script? Any help would be highly appreciated.

[ Reply to This | # ]
One step further - but still not there
Authored by: hamarkus on Apr 30, '04 07:50:54AM
o.k. by replacing the line:
 delete eachMessage 
with
 set theAccount to account of mailbox of eachMessage 
 set mailbox of eachMessage to mailbox "Trash" of theAccount 
it now works again, in the sense that it moves the message into the trash, both by invoking the script manually or let the rule do it. But only if I invoke the script manually the message is flagged by Mail as already-downloaded, if I let the rule do the job, the message is downloaded again and again, and each time transfered directly to the trash.

There is probably also a bigger issue with Mail itself, as it seems that none of the Mails I deleted myself manually got deleted on the server.

[ Reply to This | # ]
One step further - but still not there
Authored by: cilly on May 01, '04 04:14:24AM

I am having the same problem. The mail gets downloaded but is not deleted from the POP server, so it gets downloaded and downloaded all the time while my trash is ending up with tons of the same message.

Any help would be apreciated!

---
cilly @ http://www.cilly.dyndns.org/



[ Reply to This | # ]