We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfeee86 commit 53e220aCopy full SHA for 53e220a
imap-core/lib/indexer/parse-mime-tree.js
@@ -309,7 +309,8 @@ class MIMEParser {
309
if (!processEncodedWords[match[1]]) {
310
processEncodedWords[match[1]] = [];
311
312
- if (key.match(/^([^*]+)\*(\d)?\*$/)) {
+ // Additionally allow RFC5987 section 3.2.1 encoded values
313
+ if (key.match(/^([^*]+)\*(?:\d+\*)?$/)) {
314
// must have charset
315
charsetRequired.add(processEncodedWords[match[1]]);
316
}
0 commit comments