Skip to content
Snippets Groups Projects
Commit c381f2f7 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Add more SMB header field type consts, some of which aren't used

You can see some of these is in a msg_hdr.field_list, but these you won't:
- SMB_GROUP (never added by anything)
- RFC822MSGID (already represented by the id property)
- RFC822REPLYID (already represented by the reply_id property)
parent a3bdbc68
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -116,6 +116,7 @@ const SMB_PRIORITY_LOWEST = 5;
/* Message hfield types */
const SMB_SUMMARY = 0x61; // Not currently used for messages
const SMB_COMMENT = 0x62; // Appear in message text, before body
const SMB_GROUP = 0x64;
const SMB_TAGS = 0x69; // Tags (ala hashtags) for a message
const SMB_TAGS_MAXLEN = 60; // Tags strings are limited to this total length
const SMB_TAG_DELIMITER = ' '; // Tags are space-separated
......@@ -125,4 +126,12 @@ const FIDOCTRL = 0xa0;
const FIDOSEENBY = 0xa2;
const FIDOPATH = 0xa3;
const RFC822HEADER = 0xb0;
const RFC822MSGID = 0xb1;
const RFC822REPLYID = 0xb2;
const RFC822TO = 0xb3;
const RFC822FROM = 0xb4;
const RFC822REPLYTO = 0xb5;
const RFC822CC = 0xb6;
const RFC822ORG = 0xb7;
const RFC822SUBJECT = 0xb8;
const SMTPRECEIVED = 0xd3;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment