-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
25 additions
and
20 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
on run argv | ||
tell application "Mail" | ||
try | ||
set mailboxName to item 1 of argv | ||
set theAccount to item 2 of argv | ||
if selection is {} then error | ||
set messageList to (selection as list) | ||
repeat with theMessage in messageList | ||
-- set theMessage to the first item of (selection as list) | ||
set theMailbox to mailbox mailboxName of account theAccount | ||
set mailbox of theMessage to theMailbox | ||
end repeat | ||
end try | ||
end tell | ||
end run |
This file was deleted.
Oops, something went wrong.