How do i make my exchange mail remove my mail from the server?

Re: Mail from server by Dave

Dave
Mon Jun 28 09:31:37 CDT 2004

On 6/28/04 6:00 AM, in article 21dee01c45d0f$dfdf1c10$a601280a@phx.gbl,
"Jonathan Faulkner" <anonymous@discussions.microsoft.com> wrote:

> How do i make my exchange mail remove my mail from the server?

Delete it from the "Deleted Items" folder of your Exchange account. You can
also use this script to permanently delete any message:

tell application "Microsoft Entourage"
set cm to current messages
if cm is {} then
try
delete selection
end try
else
repeat with msg in cm
delete msg
try
delete msg
end try
end repeat
end if
end tell


Re: Mail from server by Barry

Barry
Mon Jun 28 10:50:48 CDT 2004

On 28/6/04 3:31 pm, in article BD0579D9.13B7C%dc@dev.null, "Dave Cortright"
<dc@dev.null> wrote:

> tell application "Microsoft Entourage"
> set cm to current messages
> if cm is {} then
> try
> delete selection
> end try
> else

Be careful with that script - if no messages are selected, that could delete
an entire folder!

--
Barry Wainwright
Microsoft MVP (see http://mvp.support.microsoft.com for details)
Seen the All-New Entourage Help Pages? - Check them out:
<http://www.entourage.mvps.org/>