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
This line of code https://github.com/NatLibFi/Skosmos/blob/master/controller/WebController.php#L366 $headers = "MIME-Version: 1.0″ . '\r\n"; introduces an invalid quote that can cause SMTP servers to crash, as explained here : https://groups.google.com/forum/#!topic/skosmos-users/2d6xTLNx4vg It should be : $headers = "MIME-Version: 1.0" . "\r\n";
The text was updated successfully, but these errors were encountered:
Thanks, good catch! Looking at git history, this bug has been in Skosmos since the project transitioned from SVN in 2014, so it's pretty ancient.
Sorry, something went wrong.
Fix bad quotes in SMTP header. Fixes #936
083a989
0758433
(cherry picked from commit 083a989)
Successfully merging a pull request may close this issue.
This line of code
https://github.com/NatLibFi/Skosmos/blob/master/controller/WebController.php#L366
$headers = "MIME-Version: 1.0″ . '\r\n";
introduces an invalid quote that can cause SMTP servers to crash, as explained here :
https://groups.google.com/forum/#!topic/skosmos-users/2d6xTLNx4vg
It should be :
$headers = "MIME-Version: 1.0" . "\r\n";
The text was updated successfully, but these errors were encountered: