forked from quicksilver/com.apple.Mail-qsplugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInfo.plist
More file actions
309 lines (308 loc) · 8.74 KB
/
Info.plist
File metadata and controls
309 lines (308 loc) · 8.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleDisplayName</key>
<string>Apple Mail</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>com.blacktree.Quicksilver.QSAppleMailPlugIn</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>Apple Mail Plugin</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>3.0.1</string>
<key>CFBundleVersion</key>
<string>11E</string>
<key>QSActionsDisabled</key>
<dict>
<key>QSAppleMailMailboxOpenAction</key>
<dict>
<key>actionClass</key>
<string>QSAppleMailPlugIn_Action</string>
<key>actionSelector</key>
<string>revealMailbox:</string>
<key>directTypes</key>
<array>
<string>qs.mail.mailbox</string>
</array>
<key>icon</key>
<string>com.apple.mail</string>
<key>name</key>
<string>Open Mailbox</string>
</dict>
<key>QSAppleMailMessageDeleteAction</key>
<dict>
<key>actionClass</key>
<string>QSAppleMailPlugIn_Action</string>
<key>actionSelector</key>
<string>deleteMessage:</string>
<key>directTypes</key>
<array>
<string>qs.mail.message</string>
</array>
<key>icon</key>
<string>com.apple.mail</string>
<key>name</key>
<string>Delete Message</string>
</dict>
<key>QSAppleMailMessageMoveAction</key>
<dict>
<key>actionClass</key>
<string>QSAppleMailPlugIn_Action</string>
<key>actionSelector</key>
<string>moveMessage:toMailbox:</string>
<key>directTypes</key>
<array>
<string>qs.mail.message</string>
</array>
<key>icon</key>
<string>com.apple.mail</string>
<key>indirectTypes</key>
<array>
<string>qs.mail.mailbox</string>
</array>
<key>name</key>
<string>Move to Mailbox...</string>
</dict>
<key>QSAppleMailMessageOpenAction</key>
<dict>
<key>actionClass</key>
<string>QSAppleMailPlugIn_Action</string>
<key>actionSelector</key>
<string>revealMessage:</string>
<key>directTypes</key>
<array>
<string>qs.mail.message</string>
</array>
<key>icon</key>
<string>com.apple.mail</string>
<key>name</key>
<string>Open Message</string>
</dict>
</dict>
<key>QSPlugIn</key>
<dict>
<key>author</key>
<string>Blacktree, Inc.</string>
<key>categories</key>
<array>
<string>Applications</string>
<string>Mail & Chat</string>
</array>
<key>description</key>
<string>Enables browsing and email actions for Apple Mail</string>
<key>extendedDescription</key>
<string><h2>Apple Mail Plugin</h2>
<p>This plugin lets you browse your mailboxes and messages contained in Apple Mail.</p>
<p>Just call up Mail.app in the first pane and hit → or /. It will reveal all mailboxes and folders for each account. Arrowing into a mailbox reveals all messages in that folder. The selected message can be viewed with Quick Look or "opened" to reveal it in Mail.</p>
<p>This plugin also allows actions for composing messages or sending messages directly (via the E-mail Support plugin) to funciton based on settings in Apple Mail.</p>
<!-- ### Actions ###
Get New Mail - Recieves new mails for all accounts.
Open New Messages - Opens all unread messages.
Open Mailbox - When a mailbox is selected in the first pane, this actions opens it in Mail.app.
Open Message - When a message is selected in the first pane, this actions opens it in its own window in Mail.app
Move to Mailbox... - When a message is selected in the first pane, this action moves the message from the current mailbox into another one. The new mailbox can be selected in the third pane.
Delete Message - Deletes the selected message from a mailbox.
Note: It has only been tested with IMAP accounts. --></string>
<key>icon</key>
<string>com.apple.Mail</string>
<key>relatedBundles</key>
<array>
<string>com.apple.Mail</string>
</array>
</dict>
<key>QSPresetAdditionsDisabled</key>
<array>
<dict>
<key>ID</key>
<string>QSPresetUnreadMail</string>
<key>icon</key>
<string>com.apple.mail</string>
<key>name</key>
<string>Unread Messages</string>
<key>source</key>
<string>QSUnreadMailSource</string>
</dict>
</array>
<key>QSRegistration</key>
<dict>
<key>QSActionProviders</key>
<dict>
<key>QSAppleMailPlugIn_Action</key>
<string>QSAppleMailPlugIn_Action</string>
</dict>
<key>QSApplicationActions</key>
<dict>
<key>com.apple.mail</key>
<dict>
<key>QSMailGetNewMailCommand</key>
<dict>
<key>actionClass</key>
<string>QSCommandObjectHandler</string>
<key>command</key>
<string>QSMailGetNewMailCommand</string>
<key>icon</key>
<string>com.apple.mail</string>
<key>name</key>
<string>Get New Mail</string>
</dict>
<key>QSMailOpenNewMailCommand</key>
<dict>
<key>actionClass</key>
<string>QSCommandObjectHandler</string>
<key>command</key>
<string>QSMailOpenNewMailCommand</string>
<key>icon</key>
<string>com.apple.mail</string>
<key>name</key>
<string>Open New Mail</string>
</dict>
</dict>
</dict>
<key>QSBundleChildHandlers</key>
<dict>
<key>com.apple.mail</key>
<string>QSAppleMailPlugIn_Source</string>
</dict>
<key>QSBundleDrawingHandlers</key>
<dict>
<key>com.apple.mail</key>
<string>QSAppleMailMediator</string>
</dict>
<key>QSCommands</key>
<dict>
<key>QSMailGetNewMailCommand</key>
<dict>
<key>command</key>
<dict>
<key>actionID</key>
<string>AppleScriptRunAction</string>
<key>directResource</key>
<dict>
<key>bundle</key>
<string>com.blacktree.Quicksilver.QSAppleMailPlugIn</string>
<key>path</key>
<string>Contents/Resources/Scripts/Get New Mail.scpt</string>
</dict>
</dict>
<key>name</key>
<string>Get New Mail</string>
</dict>
<key>QSMailOpenNewMailCommand</key>
<dict>
<key>command</key>
<dict>
<key>actionID</key>
<string>AppleScriptRunAction</string>
<key>directResource</key>
<dict>
<key>bundle</key>
<string>com.blacktree.Quicksilver.QSAppleMailPlugIn</string>
<key>path</key>
<string>Contents/Resources/Scripts/Open New Mail.scpt</string>
</dict>
</dict>
<key>name</key>
<string>Open New Messages</string>
</dict>
</dict>
<key>QSFileObjectCreationHandlers</key>
<dict>
<key>com.apple.mail.emlx</key>
<string>QSAppleMailPlugIn_Source</string>
</dict>
<key>QSMailMediators</key>
<dict>
<key>com.apple.mail</key>
<string>QSAppleMailMediator</string>
</dict>
<key>QSObjectHandlers</key>
<dict>
<key>QSUnreadMailParent</key>
<string>QSUnreadMailSource</string>
<key>qs.mail.mailbox</key>
<string>QSAppleMailPlugIn_Source</string>
<key>qs.mail.message</key>
<string>QSAppleMailPlugIn_Source</string>
</dict>
<key>QSObjectSources</key>
<dict>
<key>QSUnreadMailSource</key>
<string>QSUnreadMailSource</string>
</dict>
</dict>
<key>QSRequirements</key>
<dict>
<key>plugins</key>
<array>
<dict>
<key>id</key>
<string>com.blacktree.Quicksilver.QSEmailSupport</string>
<key>name</key>
<string>Mail Support</string>
</dict>
</array>
<key>version</key>
<string>3926</string>
</dict>
<key>QSResourceAdditions</key>
<dict>
<key>MailMailbox</key>
<dict>
<key>bundle</key>
<string>com.blacktree.Quicksilver.QSAppleMailPlugIn</string>
<key>resource</key>
<string>mailbox.icns</string>
</dict>
<key>MailMailbox-Drafts</key>
<dict>
<key>bundle</key>
<string>com.blacktree.Quicksilver.QSAppleMailPlugIn</string>
<key>resource</key>
<string>Drafts.icns</string>
</dict>
<key>MailMailbox-Inbox</key>
<dict>
<key>bundle</key>
<string>com.blacktree.Quicksilver.QSAppleMailPlugIn</string>
<key>resource</key>
<string>mailbox.icns</string>
</dict>
<key>MailMailbox-Junk</key>
<dict>
<key>bundle</key>
<string>com.blacktree.Quicksilver.QSAppleMailPlugIn</string>
<key>resource</key>
<string>Junk.icns</string>
</dict>
<key>MailMailbox-Out</key>
<dict>
<key>bundle</key>
<string>com.blacktree.Quicksilver.QSAppleMailPlugIn</string>
<key>resource</key>
<string>mailbox.icns</string>
</dict>
<key>MailMailbox-Sent</key>
<dict>
<key>bundle</key>
<string>com.blacktree.Quicksilver.QSAppleMailPlugIn</string>
<key>resource</key>
<string>Sent.icns</string>
</dict>
<key>MailMessage</key>
<dict>
<key>bundle</key>
<string>com.blacktree.Quicksilver.QSAppleMailPlugIn</string>
<key>resource</key>
<string>Mail.icns</string>
</dict>
</dict>
</dict>
</plist>