about summary refs log tree commit diff
path: root/pkgs/servers/mail
diff options
context:
space:
mode:
authorAlvar Penning <post@0x21.biz>2023-12-22 19:39:24 +0100
committerAlvar Penning <post@0x21.biz>2023-12-22 19:39:24 +0100
commit5324b5601034d7d2090c4acdcddf1bdf08c25a73 (patch)
tree9ae0872af46c47ee45a88c344c083de425c452af /pkgs/servers/mail
parent66bda599f409f9834c6fd6abc602e452a5c16b61 (diff)
downloadnixlib-5324b5601034d7d2090c4acdcddf1bdf08c25a73.tar
nixlib-5324b5601034d7d2090c4acdcddf1bdf08c25a73.tar.gz
nixlib-5324b5601034d7d2090c4acdcddf1bdf08c25a73.tar.bz2
nixlib-5324b5601034d7d2090c4acdcddf1bdf08c25a73.tar.lz
nixlib-5324b5601034d7d2090c4acdcddf1bdf08c25a73.tar.xz
nixlib-5324b5601034d7d2090c4acdcddf1bdf08c25a73.tar.zst
nixlib-5324b5601034d7d2090c4acdcddf1bdf08c25a73.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.
Diffstat (limited to 'pkgs/servers/mail')
-rw-r--r--pkgs/servers/mail/postfix/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/mail/postfix/default.nix b/pkgs/servers/mail/postfix/default.nix
index ca8d54d6006d..4278abfb8248 100644
--- a/pkgs/servers/mail/postfix/default.nix
+++ b/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 ];