On 7/29/02 9:13 AM, Marc Lambert said:
> I haven�t yet read all the recent postings so apologies if this has been
> answered already. A Rule for this would be nice, but I for one would love to
> receive even an AppleScript that can in some way mark a lot of email as
> �Delete Message From Server On Next Connection� and then have the option of
> either moving to Deleted Items folder or leaving in Inbox. There are plenty of
> times when I need to leave somthing in the Inbox to read later but would like
> to clear from my server (which I use as backup storage or for downloading to
> another office computer). Have any of the Script experts written something I
> can be sent? Much appreciated.
I am *not* a script expert (I'm a script idiot), and I don't really know
where I got this script (I suspect I kludged it together somehow), but this
script works for me, both manually and it a Rule.
tell application "Microsoft Entourage"
set currentMessages to the current messages
repeat with theMsg in the currentMessages
my ProcessMsg(theMsg)
end repeat
end tell
on ProcessMsg(theMsg)
tell application "Microsoft Entourage"
set the connection action of theMsg to remove at next connection
end tell
end ProcessMsg
--
Sherman Wilcox
--
To unsubscribe: <mailto:[EMAIL PROTECTED]>
archives: <http://www.mail-archive.com/entourage-talk%40lists.letterrip.com/>
old-archive: <http://www.mail-archive.com/entourage-talk%40lists.boingo.com/>