* mu_msg_str: add mu_msg_str_display_contact[_s], to guess the name-part from

the values in To/Cc/Bcc/From fields. (ie. '"Foo Bar" <foo@bar.cuux>' => 'Foo Bar')
This commit is contained in:
Dirk-Jan C. Binnema
2010-11-07 19:01:34 +02:00
parent aaa5f6220d
commit a7a76e7989
2 changed files with 55 additions and 0 deletions

View File

@ -195,3 +195,37 @@ mu_msg_str_summarize (const char* str, size_t max_lines)
return summary;
}
const char*
mu_msg_str_display_contact_s (const char *str)
{
static gchar contact[255];
gchar *c, *c2;
if (!str)
str = "";
g_strlcpy (contact, str, sizeof(contact));
/* strip the address, if any */
c = g_strstr_len (contact, -1, "<");
if (c != NULL)
*c = '\0';
/* replace " with space */
for (c2 = contact; *c2; ++c2)
if (*c2 == '"')
*c2 = ' ';
g_strstrip (contact);
return contact;
}
char*
mu_msg_str_display_contact (const char *str)
{
g_return_val_if_fail (str, NULL);
return g_strdup (mu_msg_str_display_contact_s (str));
}