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