diff options
author | Leo Famulari <leo@famulari.name> | 2016-05-29 13:02:23 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-05-29 13:12:16 -0400 |
commit | 1d982d787dfdd6739fe6c829aee332e9b24bdc31 (patch) | |
tree | e700e7c6c2adb91dc2fb21d55f2417548c483cba /gnu/packages/mail.scm | |
parent | c68d8126f9dc6f932fdbfe04b0c773c42d49938a (diff) | |
download | guix-1d982d787dfdd6739fe6c829aee332e9b24bdc31.tar guix-1d982d787dfdd6739fe6c829aee332e9b24bdc31.tar.gz |
gnu: procmail: Fix CVE-2014-3618.
* gnu/packages/patches/procmail-CVE-2014-3618.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/mail.scm (procmail): Use it.
Diffstat (limited to 'gnu/packages/mail.scm')
-rw-r--r-- | gnu/packages/mail.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 39133fcff0..b4563277aa 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -1149,7 +1149,8 @@ deliver it in various ways.") ;; The following patch fixes an ambiguous definition of ;; getline() in formail.c. The patch is provided by Debian as ;; patch 24. - (patches (search-patches "procmail-ambiguous-getline-debian.patch")))) + (patches (search-patches "procmail-ambiguous-getline-debian.patch" + "procmail-CVE-2014-3618.patch")))) (arguments `(#:phases (modify-phases %standard-phases (replace 'configure |