On 1/21/02 10:51 PM, "Dan Frakes" <[EMAIL PROTECTED]> wrote:

> I've been trying to save a bunch of messages to a single text file (not mbox
> file), with no luck. I've looked through Paul's scripts and Allen's scripts,
> but haven't found one that will do this (they output each message to a
> separate file). Any suggestions? (Using Entourage 9 right now.)

An MBOX file actually is a text file. All you'd have to do in OS X would be
to add .txt extension to it (better - view the .mbox extension and remove it
first, but it really doesn't matter.)

You can just select the mbox file, or several,  and run this script on it:

tell application "Finder"
    repeat with theFile in (get the selection)
        set theFile's file type to "TEXT"
        set theFile's creator type to "ttxt"
        set theName to name of theFile
        if theName ends with ".mbox" then
            set name of theFile to text 1 thru -6 of theName & ".txt"
        end if
    end repeat
end tell


> 
> P.S. Allen, for some reason the script "Messages to Disk v2" causes any
> message the script acts on to be marked as "edited" by Entourage. Is this
> normal? (And is there a way to unmark a message as "edited?")
> 
Allen will tell you what was edited. there's no way to remove an edited
icon, not even by AppleScript. It's proof irremovable that someone tampered
with your message!

-- 
Paul Berkowitz


-- 
To unsubscribe:                     
<mailto:[EMAIL PROTECTED]>
archives:       
<http://www.mail-archive.com/entourage-talk%40lists.letterrip.com/>
old-archive:       
<http://www.mail-archive.com/entourage-talk%40lists.boingo.com/>

Reply via email to