--
Barry
From: Mark Goodman <[EMAIL PROTECTED]>
Reply-To: "Entourage:mac Talk" <[EMAIL PROTECTED]>
Date: Wed, 25 Feb 2004 10:21:22 -0600
To: Entourage mac Talk <[EMAIL PROTECTED]>
Subject: 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
