Title: Re: Executing a Rule from a schedule?
Is there a way to only move messages that have been read?


on 2/23/04 4:52 PM, Paul Berkowitz <[EMAIL PROTECTED]> wrote:

That can be done almost literally in AppleScript:

set thirtyDaysAgo to (current date) - (30 * days)
tell application "Microsoft Entourage"
    move (every message in folder "Inbox" whose time received is less than thirtyDaysAgo and its category contains {category "Web Order"}) to folder "Orders"
end tell
 

Reply via email to