Mercurial > libpst
diff src/libpst.c @ 352:09dd5299d91c
Added Content-ID header support
author | Igor Stroh <igor.stroh@rulim.de> |
---|---|
date | Thu, 17 Dec 2015 12:03:44 +0100 |
parents | a8577226f7a9 |
children | 843705c25b45 |
line wrap: on
line diff
--- a/src/libpst.c Fri Sep 11 13:16:09 2015 -0700 +++ b/src/libpst.c Thu Dec 17 12:03:44 2015 +0100 @@ -2646,6 +2646,11 @@ NULL_CHECK(attach); LIST_COPY_INT32("Attachment Mime Sequence", attach->sequence); break; + case 0x3712: // PR_ATTACH_CONTENT_ID + // content identification header (Content-ID) + NULL_CHECK(attach); + LIST_COPY_STR("Content ID", attach->content_id); + break; case 0x3A00: // PR_ACCOUNT LIST_COPY_CONTACT_STR("Contact's Account name", item->contact->account_name); break;