Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add RFC 5322 to email attribute references #1256

Merged
merged 13 commits into from
Nov 22, 2024
5 changes: 5 additions & 0 deletions dictionary.json
floydtree marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -789,6 +789,7 @@
"cc": {
"caption": "Cc",
"description": "The email header Cc values, as defined by RFC 5322.",
"references": [{"url": "https://www.rfc-editor.org/rfc/rfc5322", "description": "RFC 5322"}],
"type": "email_t",
"is_array": true
},
Expand Down Expand Up @@ -2170,6 +2171,7 @@
"from": {
"caption": "From",
"description": "The email header From values, as defined by RFC 5322.",
"references": [{"url": "https://www.rfc-editor.org/rfc/rfc5322", "description": "RFC 5322"}],
"type": "email_t"
},
"full_name": {
Expand Down Expand Up @@ -3086,6 +3088,7 @@
"message_uid": {
"caption": "Message UID",
"description": "The email header Message-ID value, as defined by RFC 5322.",
"references": [{"url": "https://www.rfc-editor.org/rfc/rfc5322", "description": "RFC 5322"}],
"type": "string_t"
},
"metadata": {
Expand Down Expand Up @@ -3948,6 +3951,7 @@
"reply_to": {
"caption": "Reply To",
"description": "The email header Reply-To values, as defined by RFC 5322.",
"references": [{"url": "https://www.rfc-editor.org/rfc/rfc5322", "description": "RFC 5322"}],
"type": "email_t"
},
"reputation": {
Expand Down Expand Up @@ -4877,6 +4881,7 @@
"to": {
"caption": "To",
"description": "The email header To values, as defined by RFC 5322.",
"references": [{"url": "https://www.rfc-editor.org/rfc/rfc5322", "description": "RFC 5322"}],
"type": "email_t",
"is_array": true
},
Expand Down
1 change: 1 addition & 0 deletions objects/email.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
"subject": {
"caption": "Subject",
"description": "The email header Subject value, as defined by RFC 5322.",
"references": [{"url": "https://www.rfc-editor.org/rfc/rfc5322", "description": "RFC 5322"}],
"requirement": "recommended"
},
"to": {
Expand Down
Loading