We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Most SMTP servers I've used allow MAIL FROM: user@host. I've never used one that required MAIL FROM:<user@host>.
MAIL FROM: user@host
MAIL FROM:<user@host>
I note that the parsing for RCPT TO: is far more forgiving - stripping the <> chars from the trailing text.
RCPT TO:
<>
Can I submit a PR to make this strict parsing an option?
The text was updated successfully, but these errors were encountered:
Yeah, this does make sense. Please do!
Sorry, something went wrong.
No branches or pull requests
Most SMTP servers I've used allow
MAIL FROM: user@host
. I've never used one that requiredMAIL FROM:<user@host>
.I note that the parsing for
RCPT TO:
is far more forgiving - stripping the<>
chars from the trailing text.Can I submit a PR to make this strict parsing an option?
The text was updated successfully, but these errors were encountered: