diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-02-28 22:57:04 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-02-28 22:58:23 +0100 |
commit | 9d43579f2d7d517de3a67c41b2429b467c651514 (patch) | |
tree | d2dd198b4f7484ceafff63fcc3031edbf110ac6e /gnu/packages/mail.scm | |
parent | 4321aeb6d34904cb9401e769009315e9c86c1941 (diff) | |
download | guix-9d43579f2d7d517de3a67c41b2429b467c651514.tar guix-9d43579f2d7d517de3a67c41b2429b467c651514.tar.gz |
gnu: dovecot: Update to 2.3.0.1 [fixes CVE-2017-14461].
* gnu/packages/mail.scm (dovecot): Update to 2.3.0.1.
[source]: Remove upstreamed patch.
* gnu/packages/patches/dovecot-CVE-2017-15132.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
Diffstat (limited to 'gnu/packages/mail.scm')
-rw-r--r-- | gnu/packages/mail.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 9fbfddbec1..8d3544f908 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -1180,16 +1180,15 @@ facilities for checking incoming mail.") (define-public dovecot (package (name "dovecot") - (version "2.3.0") + (version "2.3.0.1") (source (origin (method url-fetch) (uri (string-append "https://www.dovecot.org/releases/" (version-major+minor version) "/" name "-" version ".tar.gz")) - (patches (search-patches "dovecot-CVE-2017-15132.patch")) (sha256 (base32 - "10c5myzgys866c3x6jdr1s9x9pqnjd5vpyz8z384sph21m3wnq6y")))) + "0lzisrdgrj5qqwjb7bv99mf2aljm568r6g108yisp0s644z2nxxb")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) |