aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2010-12-16 01:37:47 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-06-30 00:41:11 +0800
commite6e5c62426ca21578f39867589e5736421dc36a4 (patch)
treebdd95a5b42adc5dc946558742981d7c985194cf6 /mail
parent09ae89206ea119104dfece5176cc868175ce9304 (diff)
downloadgsoc2013-evolution-e6e5c62426ca21578f39867589e5736421dc36a4.tar
gsoc2013-evolution-e6e5c62426ca21578f39867589e5736421dc36a4.tar.gz
gsoc2013-evolution-e6e5c62426ca21578f39867589e5736421dc36a4.tar.bz2
gsoc2013-evolution-e6e5c62426ca21578f39867589e5736421dc36a4.tar.lz
gsoc2013-evolution-e6e5c62426ca21578f39867589e5736421dc36a4.tar.xz
gsoc2013-evolution-e6e5c62426ca21578f39867589e5736421dc36a4.tar.zst
gsoc2013-evolution-e6e5c62426ca21578f39867589e5736421dc36a4.zip
Bug #250046 - Quote names in addresses when necessary in mail preview
Diffstat (limited to 'mail')
-rw-r--r--mail/em-format-html.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/mail/em-format-html.c b/mail/em-format-html.c
index 6b74da70b5..f32124d321 100644
--- a/mail/em-format-html.c
+++ b/mail/em-format-html.c
@@ -2415,7 +2415,13 @@ efh_format_address (EMFormatHTML *efh, GString *out, struct _camel_header_addres
if (name && *name) {
gchar *real, *mailaddr;
- g_string_append_printf (out, "%s &lt;", name);
+ if (strchr (a->name, ',') || strchr (a->name, ';'))
+ g_string_append_printf (out, "&quot;%s&quot;", name);
+ else
+ g_string_append (out, name);
+
+ g_string_append (out, " &lt;");
+
/* rfc2368 for mailto syntax and url encoding extras */
if ((real = camel_header_encode_phrase ((guchar *)a->name))) {
mailaddr = g_strdup_printf("%s <%s>", real, a->v.addr);