diff options
author | Vincent Richard <[email protected]> | 2004-10-06 16:18:06 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2004-10-06 16:18:06 +0000 |
commit | 3fb62389332d835f6f85512a057a1413d2e39a4b (patch) | |
tree | 697f1b94dc203b6d42510d2ae4ff25add1d4d362 | |
parent | Adding functions in 'header' object to retrieve a list of fields by name/type (diff) | |
download | vmime-3fb62389332d835f6f85512a057a1413d2e39a4b.tar.gz vmime-3fb62389332d835f6f85512a057a1413d2e39a4b.zip |
Added FLAG_PASSED message flag to indicate a forwarded message (used in maildir).
-rw-r--r-- | src/messaging/message.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/messaging/message.hpp b/src/messaging/message.hpp index c07c9ca3..120aca27 100644 --- a/src/messaging/message.hpp +++ b/src/messaging/message.hpp @@ -214,6 +214,7 @@ public: FLAG_DELETED = (1 << 2), /**< Message is marked for deletion. */ FLAG_REPLIED = (1 << 3), /**< User replied to this message. */ FLAG_MARKED = (1 << 4), /**< Used-defined flag. */ + FLAG_PASSED = (1 << 5), /**< Message has been resent/forwarded/bounced. */ FLAG_UNDEFINED = 9999 /**< Used internally (this should not be returned by the flags() function). */ |