Mail from server

D

Dave Cortright

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
 
B

Barry Wainwright

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!
 
Top