* lib/: add support for getting mailing lists

This commit is contained in:
djcb
2012-12-20 23:35:53 +02:00
parent edb73a742f
commit d47a687a4d
5 changed files with 34 additions and 11 deletions

View File

@ -373,6 +373,16 @@ mu_msg_get_msgid (MuMsg *self)
return get_str_field (self, MU_MSG_FIELD_ID_MSGID);
}
const char*
mu_msg_get_mailing_list (MuMsg *self)
{
g_return_val_if_fail (self, NULL);
return get_str_field (self, MU_MSG_FIELD_ID_MAILING_LIST);
}
const char*
mu_msg_get_maildir (MuMsg *self)
{