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
If you run smtp4dev in a Docker container and then cat /smtp4dev/selfsigned-certificate.cer the output is malformed
cat /smtp4dev/selfsigned-certificate.cer
The text was updated successfully, but these errors were encountered:
As a note to anyone who finds themselves struggling with this, one solution to this is to run from your host machine:
openssl s_client -starttls smtp 127.0.0.1:2525
and output will include the cert, well-formed, like this:
But it would be nice if the Docker container could output this correctly.
Sorry, something went wrong.
it is not malformed you can do:
openssl x509 -noout -text -in /smtp4dev/selfsigned-certificate.cer
You will get all the certificate info.
You are expecting the certificate to be in PEM format but I think it use DER instead.
No branches or pull requests
If you run smtp4dev in a Docker container and then
cat /smtp4dev/selfsigned-certificate.cer
the output is malformedThe text was updated successfully, but these errors were encountered: