Support for In-Reply-To header field (type MessageId).

This commit is contained in:
Vincent Richard 2005-03-15 18:00:50 +00:00
parent 4493a7f801
commit 917df0e4f7
3 changed files with 3 additions and 0 deletions

View File

@ -172,6 +172,7 @@ namespace fields
const string::value_type* const CONTENT_DISPOSITION = "Content-Disposition";
const string::value_type* const CONTENT_ID = "Content-Id";
const string::value_type* const CONTENT_LOCATION = "Content-Location";
const string::value_type* const IN_REPLY_TO = "In-Reply-To";
const string::value_type* const X_MAILER = "X-Mailer";
const string::value_type* const X_PRIORITY = "X-Priority";

View File

@ -175,6 +175,7 @@ namespace vmime
extern const string::value_type* const CONTENT_DISPOSITION;
extern const string::value_type* const CONTENT_ID;
extern const string::value_type* const CONTENT_LOCATION;
extern const string::value_type* const IN_REPLY_TO;
extern const string::value_type* const X_MAILER;
extern const string::value_type* const X_PRIORITY;

View File

@ -67,6 +67,7 @@ public:
FIELD_ACCESS(Sender, SENDER, mailboxField)
FIELD_ACCESS(ReplyTo, REPLY_TO, mailboxField)
FIELD_ACCESS(DeliveredTo, DELIVERED_TO, mailboxField)
FIELD_ACCESS(InReplyTo, IN_REPLY_TO, messageIdField)
FIELD_ACCESS(To, TO, addressListField)
FIELD_ACCESS(Cc, CC, addressListField)