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.
This commit is contained in:
Alvar Penning 2023-12-22 19:39:24 +01:00
parent 66bda599f4
commit 5324b56010

View File

@ -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 ];