Valid From header being rejected? #62
Unanswered
tabascoterrier
asked this question in
Q&A
Replies: 1 comment 2 replies
-
See also: jackbearheart/email-addresses#66 and jackbearheart/email-addresses#64 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've got a case where a
From
address header like=?UTF-8?B?Zm9vOmJhcg==?= <[email protected]>
is being rejected by theheaders
plugin. It's an encoded-word version offoo:bar <[email protected]>
, and it looks like the headers plugin is decoding the header, attempting to parse it, and fails with the unquoted colon.This pattern is also used in
dkim_sign
.I suspect that the parsing should be done before any decoding, i.e. that example header should be accepted, but I can't find many sources to back that up so I'm curious as to what people think.
There's some more discussion on SO
Beta Was this translation helpful? Give feedback.
All reactions