mirror of
https://github.com/mailscope/kumomta.git
synced 2026-09-08 11:38:56 +00:00
This is a bit of a PITA. In the docker build we end up with some bad linkage on libssl.so.1.1 on Ubuntu. That is the legacy ssl library, to which we should not have been able to link, and for which there are no apt installable sources. See <https://askubuntu.com/questions/1465498/update-libssl-so-1-1-for-the-latest-version> Looking at the deps, the source of this linkage is the new HTTP client bindings. This commit dances around this issue by using the rustls implementation for the client instead. It's possible that this won't be sufficient, but it at least removes the openssl linkage issue as a source of headaches for now.