Mercurial > libpst
diff src/libpst.c @ 316:c4537664ff50
merge .msg generation code
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Mon, 24 Dec 2012 17:51:12 -0800 |
parents | 5338d93889aa 97c53c6868ab |
children | cb67b335afcc |
line wrap: on
line diff
--- a/src/libpst.c Mon Dec 24 16:26:39 2012 -0800 +++ b/src/libpst.c Mon Dec 24 17:51:12 2012 -0800 @@ -2300,7 +2300,7 @@ DEBUG_INFO(("Recipient Structure 1 -- NOT PROCESSED\n")); break; case 0x0040: // PR_RECEIVED_BY_NAME Name of Recipient Structure - DEBUG_INFO(("Received By Name 1 -- NOT PROCESSED\n")); + LIST_COPY_EMAIL_STR("Received By Name 1", item->email->outlook_received_name1); break; case 0x0041: // PR_SENT_REPRESENTING_ENTRYID Structure containing Sender DEBUG_INFO(("Sent on behalf of Structure 1 -- NOT PROCESSED\n")); @@ -2393,7 +2393,7 @@ DEBUG_INFO(("Sender Structure 2 -- NOT PROCESSED\n")); break; case 0x0C1A: // PR_SENDER_NAME Name of Sender Structure 2 - DEBUG_INFO(("Name of Sender Structure 2 -- NOT PROCESSED\n")); + LIST_COPY_EMAIL_STR("Name of Sender Structure 2", item->email->outlook_sender_name2); break; case 0x0C1B: // PR_SUPPLEMENTARY_INFO LIST_COPY_EMAIL_STR("Supplementary info", item->email->supplementary_info); @@ -2435,6 +2435,9 @@ // folder that this message is sent to after submission LIST_COPY_EMAIL_ENTRYID("Sentmail EntryID", item->email->sentmail_folder); break; + case 0x0E1D: // PR_NORMALIZED_SUBJECT + LIST_COPY_EMAIL_STR("Normalized subject", item->email->outlook_normalized_subject); + break; case 0x0E1F: // PR_RTF_IN_SYNC // True means that the rtf version is same as text body // False means rtf version is more up-to-date than text body @@ -2514,7 +2517,7 @@ LIST_COPY_TIME("Date 5 (Modify Date)", item->modify_date); break; case 0x300B: // PR_SEARCH_KEY Record Header 2 - DEBUG_INFO(("Record Search 2 -- NOT PROCESSED\n")); + LIST_COPY_EMAIL_STR("Record Search 2", item->email->outlook_search_key); break; case 0x35DF: // PR_VALID_FOLDER_MASK LIST_COPY_STORE_INT32("Valid Folder Mask", item->message_store->valid_mask);