diff options
author | Dan Vrátil <dvratil@redhat.com> | 2012-10-09 05:27:29 +0800 |
---|---|---|
committer | Dan Vrátil <dvratil@redhat.com> | 2012-10-09 05:27:29 +0800 |
commit | 5437fa7c354b5ddf12b4e13136834d86168e3580 (patch) | |
tree | 30f8236f3ce563a40aeadfdbb3eb18b90b2f219c /em-format | |
parent | 1cfe0327ca436a687383412664e3a5c2869c7dda (diff) | |
download | gsoc2013-evolution-5437fa7c354b5ddf12b4e13136834d86168e3580.tar.gz gsoc2013-evolution-5437fa7c354b5ddf12b4e13136834d86168e3580.tar.zst gsoc2013-evolution-5437fa7c354b5ddf12b4e13136834d86168e3580.zip |
Bug #684447 - Check for highlight during configure.
If the highlight program cannot be found width AC_PATH_PROGS,
configure will abort with an error message.
You can either
a) install highlight
b) specify the patch with HIGHLIGHT=/path/to/highlight
c) pass --disable-text-highlight to configure to exclude the module
This also makes text-highlight module to fallback to text/plain
formatter when highlight program would crash or fail to ensure
the content is delivered to user.
Diffstat (limited to 'em-format')
-rw-r--r-- | em-format/e-mail-formatter-text-plain.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/em-format/e-mail-formatter-text-plain.c b/em-format/e-mail-formatter-text-plain.c index 7fd63b5566..5ef5ba3d1f 100644 --- a/em-format/e-mail-formatter-text-plain.c +++ b/em-format/e-mail-formatter-text-plain.c @@ -34,6 +34,7 @@ static const gchar *formatter_mime_types[] = { "text/plain", "text/*", "message/*", + "application/vnd.evolution.plaintext", NULL }; typedef struct _EMailFormatterTextPlain { |