* <many> add support for displaying, searching the Bcc: field

This commit is contained in:
Dirk-Jan C. Binnema
2011-05-01 18:31:00 +03:00
parent 301de1bb81
commit c07b8e4529
11 changed files with 106 additions and 44 deletions

View File

@ -160,6 +160,19 @@ const char* mu_msg_get_to (MuMsg *msg);
*/
const char* mu_msg_get_cc (MuMsg *msg);
/**
* get the blind carbon-copy recipients (Bcc:) of this message; this
* field usually only appears in outgoing messages
*
* @param msg a valid MuMsg* instance
*
* @return the Bcc: recipients of this Message or NULL in case of
* error or if there are no such recipients. the returned string
* should *not* be modified or freed.
*/
const char* mu_msg_get_bcc (MuMsg *msg);
/**
* get the file system path of this message
*