2007-04-02 Sankar P <psankar@novell.com> * Committed on behalf of Gilles Dartiguelongue <dartigug@esiee.fr> Code Cleanup. Fixes part of #301149 svn path=/trunk/; revision=33354
41 lines
1.6 KiB
XML
41 lines
1.6 KiB
XML
<?xml version="1.0"?>
|
|
<e-plugin-list>
|
|
<e-plugin
|
|
type="shlib"
|
|
id="org.gnome.evolution.plugin.preferPlain"
|
|
location="@PLUGINDIR@/liborg-gnome-prefer-plain@SOEXT@"
|
|
_name="Prefer plain-text">
|
|
|
|
|
|
<_description xml:space="preserve">A test plugin which demonstrates a formatter plugin which lets you choose to disable HTML messages.
|
|
|
|
This plugin is unsupported demonstration code only.
|
|
</_description>
|
|
<author name="Michael Zucchi" email="NotZed@Ximian.com"/>
|
|
|
|
|
|
<!-- hook into the 'html mail' preferences page -->
|
|
<hook class="org.gnome.evolution.mail.config:1.0">
|
|
<group target="prefs" id="org.gnome.evolution.mail.prefs">
|
|
<!-- we could also just insert our own items from a section factory, -->
|
|
<!-- but then we also need to create our own section frame -->
|
|
<item type="section_table" path="10.html/80.mode" _label="Plain Text Mode"/>
|
|
<item type="item_table" path="10.html/80.mode/00.mode" factory="org_gnome_prefer_plain_config_mode"/>
|
|
</group>
|
|
</hook>
|
|
|
|
<hook class="org.gnome.evolution.mail.format:1.0">
|
|
<!-- need to override all formatters that override this type -->
|
|
<group id="EMFormatHTMLDisplay">
|
|
<item mime_type="multipart/alternative" format="org_gnome_prefer_plain_multipart_alternative"/>
|
|
<item mime_type="text/html" format="org_gnome_prefer_plain_text_html"/>
|
|
</group>
|
|
<group id="EMFormat">
|
|
<item mime_type="multipart/alternative" format="org_gnome_prefer_plain_multipart_alternative"/>
|
|
<item mime_type="text/html" format="org_gnome_prefer_plain_text_html"/>
|
|
</group>
|
|
</hook>
|
|
|
|
</e-plugin>
|
|
</e-plugin-list>
|