diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-03-02 21:38:29 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-03-02 21:46:27 +0100 |
commit | ba6b48b84f83368065a3d5b1a0e61ab8ff1116e4 (patch) | |
tree | 62ab1704b31641b5117422db4e73d804e6ea38e9 /gnu/packages | |
parent | 0250672b97ec6c48227fded313067e8370d33853 (diff) |
gnu: opensmtpd: Support ECDSA certificates.
The required libressl version is now stable and more featureful than
openssl.
* gnu/packages/mail.scm (opensmtpd)[inputs]: Replace openssl with libressl.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/mail.scm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 544bb9d8f2..271fe85b3a 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -2309,9 +2309,7 @@ transfer protocols.") `(("bdb" ,bdb) ("libasr" ,libasr) ("libevent" ,libevent) - ;; XXX Upstream recommends LibreSSL, which doesn't support TLS 1.3 yet, - ;; and requires a development release (3.0.2). Use OpenSSL instead. - ("openssl" ,openssl) + ("libressl" ,libressl) ; recommended, and supports e.g. ECDSA ("linux-pam" ,linux-pam) ("zlib" ,zlib))) (native-inputs |