Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 110343 - balsa does not show emails in color when viewing HTML email
Summary: balsa does not show emails in color when viewing HTML email
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] GNOME (show other bugs)
Hardware: All Linux
: High normal
Assignee: Gentoo Linux Gnome Desktop Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-10-24 09:28 UTC by Haroon Rafique
Modified: 2006-01-21 13:28 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Haroon Rafique 2005-10-24 09:28:28 UTC
balsa does not show emails in color when viewing HTML email.

I filed a bug upstream at:
http://bugzilla.gnome.org/show_bug.cgi?id=314291
which was resolved.

The resolution was to allow --with-gtkhtml flag for configure to be able to pick
a specific version of libgtkhtml to compile against. Currently balsa builds with
libgtkhtml3 by default, however, libgtkhtml3 does not display color in HTML
email messages. Therefore, to be able to view color emails, balsa needs to be
forced to be built with libgtkhtml2.

I don't know the syntax for .ebuilds so, I just tweaked the current balsa ebuild
and replaced:

G2CONF="${G2CONF} \
        $(use_with ssl) \
        $(use_with ldap) \
        $(use_with sqlite) \
        $(use_with kerberos gss) \
        $(use_with gnome) \
        $(use_enable gtkhtml) \
        $(use_enable threads) \
        $(use_enable pcre) \
        "
with:

G2CONF="${G2CONF} \
        $(use_with ssl) \
        $(use_with ldap) \
        $(use_with sqlite) \
        $(use_with kerberos gss) \
        $(use_with gnome) \
        $(use_enable threads) \
        $(use_enable pcre) \
        "
G2CONF="${G2CONF} --with-gtkhtml=2"

Someone more knowledgable can perhaps make a local "color" USE flag to force the
use of libgtkhtml2?
Comment 1 Saleem Abdulrasool (RETIRED) gentoo-dev 2006-01-21 13:28:02 UTC
Fixed in 2.3.8 ebuild.  Please sync and test in ~2 hours.