Does anyone know if there is a script available to DELETE A MESSAGE FROM THE
SERVER w/o having to physically do it? I would like to add to my Rules a
script to do that automatically on certain messages.

Pete C

Re: Delete from Server Script? by Mickey

Mickey
Thu Aug 31 11:45:02 CDT 2006

> This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.

--B_3239869502_317766
Content-type: text/plain;
charset="US-ASCII"
Content-transfer-encoding: 7bit

Here's a script by Paul Berkowitz that will do it:

-- Script by Paul Berkowitz
-- From message BD38F130.6EAFE%berkowit@spoof_silcom.com
-- posted to microsoft.public.mac.office.entourage

tell application "Microsoft Entourage"
set theMsg to item 1 of (get current messages)
set connection action of theMsg to remove at next connection
end tell

Copy this script into Script Editor (/Applications/Script Editor/) and then
save it as a script to /Users/your user/Documents/Microsoft User
Data/Entourage Script Menu Items/. Then, when you create your rule, add the
"Run AppleScript" action to the end, and choose the AppleScript you saved.

On 8/31/06 6:37 AM, in article C11C4266.3662%petec@nomail.com, "Pete C"
<petec@nomail.com> wrote:

> Does anyone know if there is a script available to DELETE A MESSAGE FROM THE
> SERVER w/o having to physically do it? I would like to add to my Rules a
> script to do that automatically on certain messages.
>
> Pete C
>

--
Mickey Stevens (Microsoft MVP for Office:mac)
Office & Mac Resources: <http://home.earthlink.net/~mickey.stevens/>


--B_3239869502_317766
Content-type: text/html;
charset="US-ASCII"
Content-transfer-encoding: quoted-printable

<HTML>
<HEAD>
<TITLE>Re: Delete from Server Script?</TITLE>
</HEAD>
<BODY>
<FONT FACE=3D"Verdana, Helvetica, Arial"><SPAN STYLE=3D'font-size:12.0px'>Here'=
s a script by Paul Berkowitz that will do it:<BR>
<BR>
</SPAN></FONT><FONT SIZE=3D"2"><FONT FACE=3D"Geneva, Verdana, Helvetica, Arial"=
><SPAN STYLE=3D'font-size:10.0px'>--<FONT COLOR=3D"#4B4E4E"> Script by Paul Berk=
owitz<BR>
</FONT>--<FONT COLOR=3D"#4B4E4E"> From message BD38F130.6EAFE%berkowit@spoof_=
silcom.com<BR>
</FONT>--<FONT COLOR=3D"#4B4E4E"> posted to &nbsp;microsoft.public.mac.office=
.entourage<BR>
</FONT><BR>
<FONT COLOR=3D"#FF1508">tell</FONT> <FONT COLOR=3D"#2C00FE">application</FONT> =
&quot;Microsoft Entourage&quot;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;<FONT COLOR=3D"#FF1508">set</FONT> <FONT COLOR=3D"#2883=
0B">theMsg</FONT> <FONT COLOR=3D"#FF1508">to</FONT> <FONT COLOR=3D"#2C00FE">item=
</FONT> 1 <FONT COLOR=3D"#FF1508">of</FONT> (<FONT COLOR=3D"#FF1508">get</FONT> =
<FONT COLOR=3D"#2C00FE">current messages</FONT>)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;<FONT COLOR=3D"#FF1508">set</FONT> <FONT COLOR=3D"#2C00=
FE">connection action</FONT> <FONT COLOR=3D"#FF1508">of</FONT> <FONT COLOR=3D"#2=
8830B">theMsg</FONT> <FONT COLOR=3D"#FF1508">to</FONT> <FONT COLOR=3D"#2C00FE">r=
emove at next connection<BR>
</FONT><FONT COLOR=3D"#FF1508">end</FONT> <FONT COLOR=3D"#FF1508">tell<BR>
<BR>
</FONT></SPAN></FONT></FONT><FONT FACE=3D"Verdana, Helvetica, Arial"><SPAN ST=
YLE=3D'font-size:12.0px'>Copy this script into Script Editor (/Applications/Sc=
ript Editor/) and then save it as a script to /Users/<I>your user</I>/Docume=
nts/Microsoft User Data/Entourage Script Menu Items/. &nbsp;Then, when you c=
reate your rule, add the &quot;Run AppleScript&quot; action to the end, and =
choose the AppleScript you saved.<BR>
<BR>
On 8/31/06 6:37 AM, in article C11C4266.3662%petec@nomail.com, &quot;Pete C=
&quot; &lt;petec@nomail.com&gt; wrote:<BR>
<BR>
<FONT COLOR=3D"#0000FF">&gt; Does anyone know if there is a script available =
to DELETE A MESSAGE FROM THE<BR>
&gt; SERVER w/o having to physically do it? I would like to add to my Rules=
a<BR>
&gt; script to do that automatically on certain messages.<BR>
&gt; <BR>
&gt; Pete C<BR>
&gt; <BR>
</FONT><BR>
-- <BR>
Mickey Stevens (Microsoft MVP for Office:mac)<BR>
Office &amp; Mac Resources: &lt;http://home.earthlink.net/~mickey.stevens/&=
gt;<BR>
</SPAN></FONT>
</BODY>
</HTML>


--B_3239869502_317766--


Re: Delete from Server Script? by Pete

Pete
Sat Sep 02 17:20:04 CDT 2006

> This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.

--B_3240066004_130056
Content-type: text/plain;
charset="US-ASCII"
Content-transfer-encoding: 7bit

Thank you, Mickey! It works like a charm!!! (And thank you, Paul, for
writing the script!!)

Pete C

On 8/31/06 12:45 PM, in article C11C7C3E.2DA92%mickey.stevens@mvps.org,
"Mickey Stevens" <mickey.stevens@mvps.org> wrote:

> Here's a script by Paul Berkowitz that will do it:
>
> -- Script by Paul Berkowitz
> -- From message BD38F130.6EAFE%berkowit@spoof_silcom.com
> -- posted to microsoft.public.mac.office.entourage
>
> tell application "Microsoft Entourage"
> set theMsg to item 1 of (get current messages)
> set connection action of theMsg to remove at next connection
> end tell
>
> Copy this script into Script Editor (/Applications/Script Editor/) and then
> save it as a script to /Users/your user/Documents/Microsoft User
> Data/Entourage Script Menu Items/. Then, when you create your rule, add the
> "Run AppleScript" action to the end, and choose the AppleScript you saved.
>
> On 8/31/06 6:37 AM, in article C11C4266.3662%petec@nomail.com, "Pete C"
> <petec@nomail.com> wrote:
>
>> > Does anyone know if there is a script available to DELETE A MESSAGE FROM >>
THE
>> > SERVER w/o having to physically do it? I would like to add to my Rules a
>> > script to do that automatically on certain messages.
>> >
>> > Pete C
>> >



--B_3240066004_130056
Content-type: text/html;
charset="US-ASCII"
Content-transfer-encoding: quoted-printable

<HTML>
<HEAD>
<TITLE>Re: Delete from Server Script?</TITLE>
</HEAD>
<BODY>
<FONT FACE=3D"Arial"><SPAN STYLE=3D'font-size:12.0px'>Thank you, Mickey! It wor=
ks like a charm!!! (And thank you, Paul, for writing the script!!)<BR>
<BR>
Pete C<BR>
<BR>
On 8/31/06 12:45 PM, in article C11C7C3E.2DA92%mickey.stevens@mvps.org, &qu=
ot;Mickey Stevens&quot; &lt;mickey.stevens@mvps.org&gt; wrote:<BR>
<BR>
</SPAN></FONT><BLOCKQUOTE><SPAN STYLE=3D'font-size:12.0px'><FONT FACE=3D"Verdan=
a, Helvetica, Arial">Here's a script by Paul Berkowitz that will do it:<BR>
<BR>
</FONT></SPAN><FONT SIZE=3D"2"><FONT FACE=3D"Geneva, Verdana, Helvetica, Arial"=
><SPAN STYLE=3D'font-size:10.0px'>--<FONT COLOR=3D"#4B4E4E"> Script by Paul Berk=
owitz<BR>
</FONT>--<FONT COLOR=3D"#4B4E4E"> From message BD38F130.6EAFE%berkowit@spoof_=
silcom.com<BR>
</FONT>--<FONT COLOR=3D"#4B4E4E"> posted to &nbsp;microsoft.public.mac.office=
.entourage<BR>
</FONT><BR>
<FONT COLOR=3D"#FF1508">tell</FONT> <FONT COLOR=3D"#2C00FE">application</FONT> =
&quot;Microsoft Entourage&quot;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;<FONT COLOR=3D"#FF1508">set</FONT> <FONT COLOR=3D"#2883=
0B">theMsg</FONT> <FONT COLOR=3D"#FF1508">to</FONT> <FONT COLOR=3D"#2C00FE">item=
</FONT> 1 <FONT COLOR=3D"#FF1508">of</FONT> (<FONT COLOR=3D"#FF1508">get</FONT> =
<FONT COLOR=3D"#2C00FE">current messages</FONT>)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;<FONT COLOR=3D"#FF1508">set</FONT> <FONT COLOR=3D"#2C00=
FE">connection action</FONT> <FONT COLOR=3D"#FF1508">of</FONT> <FONT COLOR=3D"#2=
8830B">theMsg</FONT> <FONT COLOR=3D"#FF1508">to</FONT> <FONT COLOR=3D"#2C00FE">r=
emove at next connection<BR>
</FONT><FONT COLOR=3D"#FF1508">end</FONT> <FONT COLOR=3D"#FF1508">tell<BR>
<BR>
</FONT></SPAN></FONT></FONT><FONT FACE=3D"Verdana, Helvetica, Arial"><SPAN ST=
YLE=3D'font-size:12.0px'>Copy this script into Script Editor (/Applications/Sc=
ript Editor/) and then save it as a script to /Users/<I>your user</I>/Docume=
nts/Microsoft User Data/Entourage Script Menu Items/. &nbsp;Then, when you c=
reate your rule, add the &quot;Run AppleScript&quot; action to the end, and =
choose the AppleScript you saved.<BR>
<BR>
On 8/31/06 6:37 AM, in article C11C4266.3662%petec@nomail.com, &quot;Pete C=
&quot; &lt;petec@nomail.com&gt; wrote:<BR>
<BR>
<FONT COLOR=3D"#0000FF">&gt; Does anyone know if there is a script available =
to DELETE A MESSAGE FROM THE<BR>
&gt; SERVER w/o having to physically do it? I would like to add to my Rules=
a<BR>
&gt; script to do that automatically on certain messages.<BR>
&gt; <BR>
&gt; Pete C<BR>
&gt; <BR>
</FONT></SPAN></FONT></BLOCKQUOTE><FONT FACE=3D"Verdana, Helvetica, Arial"><S=
PAN STYLE=3D'font-size:12.0px'><BR>
</SPAN></FONT>
</BODY>
</HTML>


--B_3240066004_130056--