diff options
author | Adam Zimmerman <adam@digitalpirate.ca> | 2018-06-06 14:47:46 -0700 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-07 03:57:42 +0200 |
commit | d6dd64af3743934402616a5fda3f93e3a14a3ab0 (patch) | |
tree | 96462aa370e1040e7c250390f7dedbcdba7ae102 /gnu/packages/mail.scm | |
parent | 6acc671befa8567360bc014f43ee8a9dc69b33d9 (diff) | |
download | guix-d6dd64af3743934402616a5fda3f93e3a14a3ab0.tar guix-d6dd64af3743934402616a5fda3f93e3a14a3ab0.tar.gz |
gnu: opensmtpd: Fix crash on table authentication.
* gnu/packages/patches/opensmtpd-fix-crash.patch: New patch.
* gnu/packages/mail.scm (opensmtpd)[source]: Use it.
* gnu/local.mk (dist_patch_DATA): Add it.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
Diffstat (limited to 'gnu/packages/mail.scm')
-rw-r--r-- | gnu/packages/mail.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index f6dfb33970..a9add98d14 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -1995,7 +1995,9 @@ transfer protocols.") name "-" version ".tar.gz")) (sha256 (base32 - "10bsfsnlg9d9i6l2izdnxp05s3ri8fvwzqxvx1jmarc852382619")))) + "10bsfsnlg9d9i6l2izdnxp05s3ri8fvwzqxvx1jmarc852382619")) + ;; Fixed upstream: <github.com/OpenSMTPD/OpenSMTPD/pull/835>. + (patches (search-patches "opensmtpd-fix-crash.patch")))) (build-system gnu-build-system) (inputs `(("bdb" ,bdb) |