You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An addr-spec is a specific Internet identifier that contains a
locally interpreted string followed by the at-sign character ("@",
ASCII value 64) followed by an Internet domain.
For some reason vmime allows empty domain or even a lack of '@' sign. Instead vmime asks DNS for local hostname.
For me an expected behavior is that any parser should not make any network connections. Additionally if domain part is missing, it should be a parsing error.
The text was updated successfully, but these errors were encountered:
I just got hit with this. Will try to get the patch put into a PR over the next day or two. May need to untangle it from other open PRs/patches we have applied first.
According to RFC2822 section 3.4.1:
For some reason vmime allows empty domain or even a lack of '@' sign. Instead vmime asks DNS for local hostname.
https://github.com/kisli/vmime/blob/b55bdc9/src/vmime/emailAddress.cpp#L543-L546
For me an expected behavior is that any parser should not make any network connections. Additionally if domain part is missing, it should be a parsing error.
The text was updated successfully, but these errors were encountered: