맥 OS 시에라.
이것은 새로운 스크립트를 생성 하는 다음 스크립트를 기반으로 가능할 것 같습니다 .
tell application "Mail"
set newRule to make new rule at end of rules with properties { ... }
tell newRule
make new rule condition at end of rule conditions with properties { ... }
end tell
end tell
내가 할 수있는 일은 다음과 같습니다.
tell application "Mail"
set existingRule to (* get a specific rule already in Mail Preferences *)
tell existingRule
make new rule condition at end of rule conditions with properties {rule type:message content, qualifier:does contain value, expression:"woohoo"}
end tell
end tell
내가 찾을 수없는 것은 이미 저장된 규칙 을 검색 하는 방법 입니다.
새 이메일을 자동으로 확인하는 스크립트를 작성하려고합니까?
—
music2myear
@ music2myear : 아. 스크립트로 기존 규칙을 업데이트하는 방법을 알아 내려고했습니다. 아래의 대답은 정확합니다. 그러나 찾아서 알아낼 수있는 회로적인 길을 매우 오래 걸렸습니다.
—
Josh Bruce
시원한. 당신이 그것을 알아 내고 여기에 문서화 할 수있어서 기쁩니다.
—
music2myear