Possible to "Delete Permanently"?

C

Clif

I've recently switched to OS X/Entourage/Exchange from
Windows/Outook/Exchange and am looking for a way to delete emails
permanently in 1 swift step. Currently I use 1 rule to delete them,
then another that deletes them from Deleted Items. What am I missing?
 
B

Barry Wainwright [MVP]

I've recently switched to OS X/Entourage/Exchange from
Windows/Outook/Exchange and am looking for a way to delete emails
permanently in 1 swift step. Currently I use 1 rule to delete them,
then another that deletes them from Deleted Items. What am I missing?

-- ** Start Script ** --
-- Nuke the Mail v1.0
-- A script for Microsoft Entourage v11
-- (will not work with vX)
-- an applescript by Barry Wainwright <mailto:[email protected]>
-- This script released under a Creative Commons Attribution, NonCommercial,
ShareAlike 2.0 England & Wales License.
-- see <http://creativecommons.org/licenses/by-nc-sa/2.0/uk/> for full
details
-- 19/12/2003 - First version
tell application "Microsoft Entourage"
try
set theMail to current messages
delete theMail
delete theMail
end try
end tell
-- ** End Script ** --


Save the script as a compiled script & put it in the ŒEntourage Script Menu
Items¹ folder in your ŒMicrosoft User Data¹ folder. The script can be
manually run from the menu or called as an action in a mail rule.
 
C

Clif

Perfect!

Thanks, Clif
-- ** Start Script ** --
-- Nuke the Mail v1.0
-- A script for Microsoft Entourage v11
-- (will not work with vX)
-- an applescript by Barry Wainwright <mailto:[email protected]>
-- This script released under a Creative Commons Attribution, NonCommercial,
ShareAlike 2.0 England & Wales License.
-- see <http://creativecommons.org/licenses/by-nc-sa/2.0/uk/> for full
details
-- 19/12/2003 - First version
tell application "Microsoft Entourage"
try
set theMail to current messages
delete theMail
delete theMail
end try
end tell
-- ** End Script ** --


Save the script as a compiled script & put it in the Å’Entourage Script Menu
Items¹ folder in your ŒMicrosoft User Data¹ folder. The script can be
manually run from the menu or called as an action in a mail rule.



--
Barry Wainwright
Microsoft MVP (see http://mvp.support.microsoft.com for details)
The Entourage User's WebLog has moved!
For hints, tips and troubleshooting go to <http://www.barryw.net/weblog/>



--B_3251977868_10613541
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
X-Google-AttachSize: 2136

<HTML>
<HEAD>
<TITLE>Re: Possible to &quot;Delete Permanently&quot;?</TITLE>
</HEAD>
<BODY>
<FONT FACE="Verdana, Helvetica, Arial"><SPAN STYLE='font-size:12.0px'>On 18/1/07 14:57, in article [email protected], &quot;Clif&quot; &lt;[email protected]&gt; wrote:<BR>
<BR>
<FONT COLOR="#0000FF">&gt; I've recently switched to OS X/Entourage/Exchange from<BR>
&gt; Windows/Outook/Exchange and am looking for a way to delete emails<BR>
&gt; permanently in 1 swift step. &nbsp;Currently I use 1 rule to delete them,<BR>
&gt; then another that deletes them from Deleted Items. &nbsp;What am I missing?<BR>
&gt; <BR>
</FONT><BR>
-- ** Start Script ** --<BR>
-- Nuke the Mail v1.0<BR>
-- A script for Microsoft Entourage v11<BR>
-- (will not work with vX)<BR>
-- an applescript by Barry Wainwright <a href="mailto:[email protected]">&lt;mailto:[email protected]&gt;</a><BR>
-- This script released under a Creative Commons Attribution, NonCommercial, ShareAlike 2.0 England &amp; Wales License.<BR>
-- see &lt;http://creativecommons.org/licenses/by-nc-sa/2.0/uk/&gt; for full details<BR>
-- 19/12/2003 - First version<BR>
tell application &quot;Microsoft Entourage&quot;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;try<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;set theMail to current messages<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;delete theMail<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;delete theMail<BR>
&nbsp;&nbsp;&nbsp;&nbsp;end try<BR>
end tell<BR>
-- ** End Script ** --<BR>
<BR>
<BR>
Save the script as a compiled script &amp; put it in the ‘EntourageScript Menu Items’ folder in your ‘Microsoft User Data’ folder. The script can be manually run from the menu or called as an actionin a mail rule.<BR>
<BR>
<BR>
<BR>
-- <BR>
Barry Wainwright<BR>
Microsoft MVP (see <a href="http://mvp.support.microsoft.com">http://mvp.support.microsoft.com</a> for details)<BR>
The Entourage User's WebLog has moved!<BR>
For hints, tips and troubleshooting go to &lt;http://www.barryw.net/weblog/&gt;<BR>
<BR>
</SPAN></FONT>
</BODY>
</HTML>


--B_3251977868_10613541--
 
Top