aboutsummaryrefslogtreecommitdiffstats
path: root/em-format/e-mail-part.c
Commit message (Collapse)AuthorAgeFilesLines
* Bug 721545 - License text contains obsolete FSF postal addressMatthew Barnes2014-01-081-10/+9
|
* Make EMailPart and its subclasses extensible.Matthew Barnes2013-06-081-2/+14
|
* EMailPart: Add "part-list" property.Matthew Barnes2013-06-061-1/+53
| | | | | | | | | | This is a weak reference to the EMailPartList to which the EMailPart has been added. The property is set by e_mail_part_list_add_part(). New functions: e_mail_part_ref_part_list() e_mail_part_set_part_list()
* Convert EMailPart to a GObject.Matthew Barnes2013-05-201-133/+289
| | | | | EMailPart is reference-counted, subclassed, and allows a custom finalize function. There's no excuse for it not to use GObject.
* Add e_mail_part_get_validity_flags().Matthew Barnes2013-05-201-0/+20
|
* Add e_mail_part_has_validity().Matthew Barnes2013-05-201-0/+9
|
* Add e_mail_part_set_is_attachment().Matthew Barnes2013-05-201-0/+9
|
* Add e_mail_part_get_is_attachment().Matthew Barnes2013-05-201-0/+8
|
* Add e_mail_part_set_mime_type().Matthew Barnes2013-05-201-0/+13
|
* Add e_mail_part_get_mime_type().Matthew Barnes2013-05-201-0/+8
|
* Add e_mail_part_ref_mime_part().Matthew Barnes2013-05-201-0/+25
|
* Add e_mail_part_id_has_suffix().Matthew Barnes2013-05-201-0/+10
|
* Add e_mail_part_id_has_prefix().Matthew Barnes2013-05-201-0/+10
|
* Add e_mail_part_set_cid().Matthew Barnes2013-05-201-0/+10
|
* Add e_mail_part_get_cid().Matthew Barnes2013-05-201-0/+8
|
* Add e_mail_part_get_id().Matthew Barnes2013-05-201-0/+8
|
* em-format cleanups.Matthew Barnes2013-05-201-6/+5
|
* EMailPart: Store validity pairs in a GQueue.Matthew Barnes2013-05-201-10/+15
|
* Coding style and whitespace cleanup.Matthew Barnes2013-01-111-2/+2
|
* Bug #687670 - Signing with both pgp and S/MIME shows only one signatureMilan Crha2012-11-221-14/+69
|
* Mail formatter rewriteDan Vrátil2012-06-061-0/+196
All mail-parsing and formatting code has been moved to em-format. Parsing is handeled by EMailParser class, formatting by EMailFormatter. Both classes have registry which hold extensions - simple classes that do actual parsing and formatting. Each supported mime-type has it's own parser and formatter extension class.