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
