I came across another thing regarding local parts I don't think is correct: only quoted local parts should be allowed to contain @.
validateLocalPart "@"
-- Success (LocalPart "@")
The problem seems to be in validateLocalPart where allowedChar allows characters which may only occur in quoted local parts to occur unquoted.
I came across another thing regarding local parts I don't think is correct: only quoted local parts should be allowed to contain
@.The problem seems to be in
validateLocalPartwhereallowedCharallows characters which may only occur in quoted local parts to occur unquoted.