Skip to content

Commit

Permalink
add known headers caps value #131
Browse files Browse the repository at this point in the history
  • Loading branch information
jeevatkm committed May 16, 2024
1 parent 85e4af3 commit 448b839
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/utils.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export function createElementFromString(htmlString) {
return createDocumentFromString(htmlString)?.body.firstElementChild;
}

const knownHeaderCaps = ['x', 'id', 'spf', 'dkim', 'messageid', 'arc'];
const knownHeaderCaps = ['x', 'id', 'spf', 'dkim', 'messageid', 'arc', 'ms', 'mime', 'smtp', 'guid', 'eid'];
export function toPartialCanonicalFormat(hdrKey) {
let values = [];
for (let v of hdrKey.split('-')) {
Expand Down

0 comments on commit 448b839

Please sign in to comment.