blob: 22df4c67cdfaab738f8ece9b7335097403d928bb (
plain) (
blame)
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
|
<?xml version="1.0"?>
<e-plugin-list>
<e-plugin
type="shlib"
id="org.gnome.evolution.plugin.mailToTask"
location="@PLUGINDIR@/liborg-gnome-mail-to-task@SOEXT@"
_name="Mail to task">
<_description>A plugin which allows the creation of tasks from the contents of a mail message.</_description>
<author name="Rodrigo Moya" email="rodrigo@novell.com"/>
<!-- hook into the uri popup menu -->
<hook class="org.gnome.evolution.mail.popup:1.0">
<menu id="org.gnome.evolution.mail.folderview.popup" target="select">
<item
type="item"
path="71.mail_to_task"
icon="stock_todo"
_label="Con_vert to Task"
enable="many"
visible="many"
activate="org_gnome_mail_to_task"/>
</menu>
</hook>
<hook class="org.gnome.evolution.mail.bonobomenu:1.0">
<menu id="org.gnome.evolution.mail.browser" target="select">
<!-- the path to the bonobo menu description -->
<ui file="@PLUGINDIR@/org-gnome-mail-to-task.xml"/>
<item
type="item"
verb="ConvertTask"
path="/commands/ConvertTask"
enable="many"
activate="org_gnome_mail_to_task_menu"/>
</menu>
</hook>
</e-plugin>
</e-plugin-list>
|