about summary refs log tree commit diff
path: root/nixpkgs
diff options
context:
space:
mode:
authorAlvar Penning <post@0x21.biz>2023-12-22 19:39:24 +0100
committerAlyssa Ross <hi@alyssa.is>2023-12-25 19:56:23 +0100
commit6acf696944a55960f00d257553c0de74db90d6ff (patch)
tree34b83a26ecd63479bcfe056d2475135ea127f05d /nixpkgs
parent49113571d81505932f96e540def33fbcedcd8ebb (diff)
downloadnixlib-6acf696944a55960f00d257553c0de74db90d6ff.tar
nixlib-6acf696944a55960f00d257553c0de74db90d6ff.tar.gz
nixlib-6acf696944a55960f00d257553c0de74db90d6ff.tar.bz2
nixlib-6acf696944a55960f00d257553c0de74db90d6ff.tar.lz
nixlib-6acf696944a55960f00d257553c0de74db90d6ff.tar.xz
nixlib-6acf696944a55960f00d257553c0de74db90d6ff.tar.zst
nixlib-6acf696944a55960f00d257553c0de74db90d6ff.zip
postfix: 3.8.3 -> 3.8.4
Security: this release adds support to defend against an email spoofing
attack (SMTP smuggling) on recipients at a Postfix server. For
background, see https://www.postfix.org/smtp-smuggling.html.

https://www.postfix.org/announcements/postfix-3.8.4.html

The source URL was modified to another mirror as the current CDN URL
failed to resolve for me from two different hosts.

(cherry picked from commit 5324b5601034d7d2090c4acdcddf1bdf08c25a73)
Diffstat (limited to 'nixpkgs')
-rw-r--r--nixpkgs/pkgs/servers/mail/postfix/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixpkgs/pkgs/servers/mail/postfix/default.nix b/nixpkgs/pkgs/servers/mail/postfix/default.nix
index ca8d54d6006d..4278abfb8248 100644
--- a/nixpkgs/pkgs/servers/mail/postfix/default.nix
+++ b/nixpkgs/pkgs/servers/mail/postfix/default.nix
@@ -25,11 +25,11 @@ let
 
 in stdenv.mkDerivation rec {
   pname = "postfix";
-  version = "3.8.3";
+  version = "3.8.4";
 
   src = fetchurl {
-    url = "http://cdn.postfix.johnriley.me/mirrors/postfix-release/official/${pname}-${version}.tar.gz";
-    hash = "sha256-FpRsmHSnhqCfU7F9HIPcH6rjXL+AurNKsBeYtwQglos=";
+    url = "https://de.postfix.org/ftpmirror/official/${pname}-${version}.tar.gz";
+    hash = "sha256-b1hIxdi2p9LFrwqfdbC9PxA0UekSWRRkq4Z/3gheYjY=";
   };
 
   nativeBuildInputs = [ makeWrapper m4 ];