-
Notifications
You must be signed in to change notification settings - Fork 367
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The “header” processor populates “Received:” headers wrongly. #198
Labels
Comments
Hi, thanks for the bug reports - they're excellently written! |
Thanks. TODO
As for, FROM - in the wild, eg. Postfix, Gmail always leave it all lowercase. |
flashmob
added a commit
that referenced
this issue
Dec 12, 2019
Implemented in #202
|
Merged
flashmob
added a commit
that referenced
this issue
Dec 27, 2019
flashmob
added a commit
that referenced
this issue
Dec 27, 2019
- Parser captures quoted local-parts without the escape characters - mail.Address.String() know when to quote local-part, - server's `allowsHost` function is ipv6 address aware (addresses specified in the config will get normalized to their ipv6 simplest form, addresses parsed from RCPT and MAIL commands will have ipv6 normalized) - if `<postmaster>` is used in the RCPT TO (without a host), then new functionality was added to assume that the host is assumed to be the Hostname setting for the Server - HELO/EHLO argument validation. #200 - The “header” processor populates “Received:” headers wrongly. #198 - tiny bug in “p_redis.go”. #196 - “MimeHeaderDecode” (envelope.go) returns an incorrectly-spaced string. #195 - go-guerrilla cannot properly handle some valid addresses. #199
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
RFC 5321
go-guerrilla/backends/p_header.go
Line 59 in 51f7dda
A
Domain
in aTCP-info
should not be from theHELO
command. Would better omit it asgo-guerrilla
doesn’t do rDNS lookup.And replacing
from
withFROM
would better comply with the RFC. (Unsure if case-insensitive.)go-guerrilla/backends/p_header.go
Line 61 in 51f7dda
I can’t say it is wrong for this one, just want to know your opinion on changing
with SMTP
toWITH ESMTPS
, asgo-guerrilla
supports bothEHLO
andSTARTTLS
(which might be a poor reason to back it).The text was updated successfully, but these errors were encountered: