> 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_3187069121_179739
Content-type: text/plain;
charset="ISO-8859-1"
Content-transfer-encoding: 8bit

Long story short, someone got access to my laptop and deleted several
messages that I had previously saved (including deleting them from the
³Deleted Items² folder). As these messages were from a POP account and
several weeks/months old; simply re-downloading them is not an option
either. My efforts to search the free space on the disk for keywords has
not been successful either (I only have Norton for this). Any other ideas?

Entourage 2004 V 11.1.0
1GHz PB

--B_3187069121_179739
Content-type: text/html;
charset="ISO-8859-1"
Content-transfer-encoding: quoted-printable

<HTML>
<HEAD>
<TITLE>Retrieve Maliciously Deleted Messages</TITLE>
</HEAD>
<BODY>
<FONT FACE=3D"Verdana, Helvetica, Arial"><SPAN STYLE=3D'font-size:12.0px'>Long =
story short, someone got access to my laptop and deleted several messages th=
at I had previously saved (including deleting them from the &#8220;Deleted I=
tems&#8221; folder). &nbsp;As these messages were from a POP account and sev=
eral weeks/months old; simply re-downloading them is not an option either. &=
nbsp;My efforts to search the free space on the disk for keywords has not be=
en successful either (I only have Norton for this). &nbsp;Any other ideas?<B=
R>
<BR>
Entourage 2004 V 11.1.0<BR>
1GHz PB</SPAN></FONT>
</BODY>
</HTML>


--B_3187069121_179739--

Re: Retrieve Maliciously Deleted Messages by Allen

Allen
Tue Dec 28 12:19:16 CST 2004

> 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_3187073961_57073948
Content-type: text/plain;
charset="ISO-8859-1"
Content-transfer-encoding: 8bit

No luck. if they are deleted from Deleted Items, they are gone. You should
have a backup of your Entourage identity, and update it every day or two.
Then you have some hope of recovering things from your backup.

I use a shell script, scheduled with cron (using the free tool Cronnix), to
create a zipped archive of my entire Microsoft User Data folder every day. I
keep only the three most recent copies. I named the script "CpErageDB.sh"
and I store it in ~/Library/Scripts/Utility/Crontab, along with the
AppleScript it runs to purge the backups back to three copies.

The shell script contents:

#!/bin/sh
ditto -c -k -X --rsrc ~/Documents/"Microsoft User Data" "/Users/Microsoft
User Data`date +%m-%d-%y`.zip"
osascript ~/Library/Scripts/Utility/CronTab/purge\ MUD\ backups

The content of the "purge MUD backups" AppleScript:

tell application "Finder"
set dir to "Users:"
set fList to files in folder dir whose name begins with "Microsoft User"
if (count fList) > 3 then
repeat with a from 1 to ((count fList) - 3)
delete {item a of fList}
end repeat
end if
empty trash
end tell

You may want to remove the "empty trash" line if you don't want your trash
automatically emptied once a day.

In Cronnix, I set up a job to run every weekday at 5:30 AM. The command is
simply the path to the shell script:

/Users/allen/Library/Scripts/Utility/CronTab/CpErageDB.sh

You will be astonished at how fast ditto can make a zipped archive!


On 12/28/04 6:58 AM, in article BDF6D0C0.10FD6%dewayne.nelon@logicacmg.com,
"DeWayne A. Nelon" <dewayne.nelon@logicacmg.com> wrote:

> Long story short, someone got access to my laptop and deleted several messages
> that I had previously saved (including deleting them from the ³Deleted Items²
> folder). As these messages were from a POP account and several weeks/months
> old; simply re-downloading them is not an option either. My efforts to search
> the free space on the disk for keywords has not been successful either (I only
> have Norton for this). Any other ideas?
>
> Entourage 2004 V 11.1.0
> 1GHz PB



--B_3187073961_57073948
Content-type: text/html;
charset="ISO-8859-1"
Content-transfer-encoding: quoted-printable

<HTML>
<HEAD>
<TITLE>Re: Retrieve Maliciously Deleted Messages</TITLE>
</HEAD>
<BODY>
<FONT FACE=3D"Verdana, Helvetica, Arial"><SPAN STYLE=3D'font-size:12.0px'>No lu=
ck. if they are deleted from Deleted Items, they are gone. You should have a=
backup of your Entourage identity, and update it every day or two. Then you=
have some hope of recovering things from your backup.<BR>
<BR>
I use a shell script, scheduled with cron (using the free tool Cronnix), to=
create a zipped archive of my entire Microsoft User Data folder every day. =
I keep only the three most recent copies. I named the script &quot;CpErageDB=
.sh&quot; and I store it in ~/Library/Scripts/Utility/Crontab, along with th=
e AppleScript it runs to purge the backups back to three copies.<BR>
<BR>
The shell script contents:<BR>
<BR>
#!/bin/sh<BR>
ditto -c -k -X --rsrc ~/Documents/&quot;Microsoft User Data&quot; &nbsp;&qu=
ot;/Users/Microsoft User Data`date +%m-%d-%y`.zip&quot;<BR>
osascript ~/Library/Scripts/Utility/CronTab/purge\ MUD\ backups<BR>
<BR>
The content of the &quot;purge MUD backups&quot; AppleScript:<BR>
<BR>
<FONT COLOR=3D"#0000FF"><B>tell</B></FONT> <FONT COLOR=3D"#DD0000">application<=
/FONT> &quot;Finder&quot;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;<FONT COLOR=3D"#0000FF"><B>set</B></FONT> <FONT COLOR=
=3D"#408000">dir</FONT> <FONT COLOR=3D"#0000FF"><B>to</B></FONT> &quot;Users:&qu=
ot;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;<FONT COLOR=3D"#0000FF"><B>set</B></FONT> <FONT COLOR=
=3D"#408000">fList</FONT> <FONT COLOR=3D"#0000FF"><B>to</B></FONT> <FONT COLOR=3D"=
#DD0000">files</FONT> <FONT COLOR=3D"#0000FF"><B>in</B></FONT> <FONT COLOR=3D"#D=
D0000">folder</FONT> <FONT COLOR=3D"#408000">dir</FONT> <FONT COLOR=3D"#0000FF">=
<B>whose</B></FONT> <FONT COLOR=3D"#DD0000">name</FONT> <FONT COLOR=3D"#0000FF">=
<B>begins with</B></FONT> &quot;Microsoft User&quot;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;<FONT COLOR=3D"#0000FF"><B>if</B></FONT> (<FONT COLOR=
=3D"#DD0000">count</FONT> <FONT COLOR=3D"#408000">fList</FONT>) &gt; 3 <FONT COL=
OR=3D"#0000FF"><B>then<BR>
</B></FONT> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT COLOR=3D"#0000FF"=
><B>repeat</B></FONT> <FONT COLOR=3D"#0000FF"><B>with</B></FONT> <FONT COLOR=3D"=
#408000">a</FONT> <FONT COLOR=3D"#0000FF"><B>from</B></FONT> 1 <FONT COLOR=3D"#0=
000FF"><B>to</B></FONT> ((<FONT COLOR=3D"#DD0000">count</FONT> <FONT COLOR=3D"#4=
08000">fList</FONT>) - 3)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FO=
NT COLOR=3D"#DD0000">delete</FONT> {<FONT COLOR=3D"#DD0000">item</FONT> <FONT CO=
LOR=3D"#408000">a</FONT> <FONT COLOR=3D"#0000FF"><B>of</B></FONT> <FONT COLOR=3D"#=
408000">fList</FONT>}<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT COLOR=3D"#0000FF"><B>en=
d</B></FONT> <FONT COLOR=3D"#0000FF"><B>repeat<BR>
</B></FONT> &nbsp;&nbsp;&nbsp;<FONT COLOR=3D"#0000FF"><B>end</B></FONT> <FONT=
COLOR=3D"#0000FF"><B>if<BR>
</B></FONT> &nbsp;&nbsp;&nbsp;<FONT COLOR=3D"#DD0000">empty</FONT> <FONT COLO=
R=3D"#DD0000">trash<BR>
</FONT><FONT COLOR=3D"#0000FF"><B>end</B></FONT> <FONT COLOR=3D"#0000FF"><B>tel=
l<BR>
</B></FONT><BR>
You may want to remove the &quot;empty trash&quot; line if you don't want y=
our trash automatically emptied once a day.<BR>
<BR>
In Cronnix, I set up a job to run every weekday at 5:30 AM. The command is =
simply the path to the shell script:<BR>
<BR>
/Users/allen/Library/Scripts/Utility/CronTab/CpErageDB.sh<BR>
<BR>
You will be astonished at how fast ditto can make a zipped archive!<BR>
<BR>
<BR>
On 12/28/04 6:58 AM, in article BDF6D0C0.10FD6%dewayne.nelon@logicacmg.com,=
&quot;DeWayne A. Nelon&quot; &lt;dewayne.nelon@logicacmg.com&gt; wrote:<BR>
<BR>
</SPAN></FONT><BLOCKQUOTE><FONT FACE=3D"Verdana, Helvetica, Arial"><SPAN STYL=
E=3D'font-size:12.0px'>Long story short, someone got access to my laptop and d=
eleted several messages that I had previously saved (including deleting them=
from the &#8220;Deleted Items&#8221; folder). &nbsp;As these messages were =
from a POP account and several weeks/months old; simply re-downloading them =
is not an option either. &nbsp;My efforts to search the free space on the di=
sk for keywords has not been successful either (I only have Norton for this)=
. &nbsp;Any other ideas?<BR>
<BR>
Entourage 2004 V 11.1.0<BR>
1GHz PB<BR>
</SPAN></FONT></BLOCKQUOTE><FONT FACE=3D"Verdana, Helvetica, Arial"><SPAN STY=
LE=3D'font-size:12.0px'><BR>
</SPAN></FONT>
</BODY>
</HTML>


--B_3187073961_57073948--