about summary refs log tree commit diff
path: root/pkgs/servers/ftp
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2017-05-25 20:37:47 +0200
committerJoachim Fasting <joachifm@fastmail.fm>2017-05-25 23:53:25 +0200
commit231b23ffb4ecf0a0cfb944f5c59ac27a88982acd (patch)
tree5175e313664b4e156351be8f0436c1ddcd119487 /pkgs/servers/ftp
parentb3b243193228967cbef529a7e032f4d248594ca2 (diff)
pure-ftpd: 1.0.42 -> 1.0.46
Version 1.0.46
    The server can now be linked against OpenSSL 1.1.x with the strict API.
    Unmaintained contributions have been removed.
    File globbing could take up to `GLOB_TIMEOUT` seconds (17 seconds by
    default) when matching some patterns, no matter what the configured
    recursion level was. This has been fixed, and upgrading is highly
    recommended.

Version 1.0.45
    TLS v1.0 sessions are now refused.
    Version 1.0.44 didn’t properly parse the TLSCipherSuite
    directive. This has been fixed.

Version 1.0.44
    The Perl and Python wrappers are gone. The daemon can now use a
    configuration file without requiring external dependencies.
    Pure-FTPd can now be linked against OpenSSL 1.1.x
    The QUIT command didn’t work properly when the server was compiled
    without support for RFC2640. This has been fixed.
    3DES was removed from the default cipher suite.

Version 1.0.43
    Passwords can now be hashed using Argon2i, which is now the default
    algorithm for puredb accounts.
    Authentication against system accounts is compatible with OpenBSD 6.0.
    The -J switch didn’t work properly in version 1.0.42. This has been fixed.
Diffstat (limited to 'pkgs/servers/ftp')
-rw-r--r--pkgs/servers/ftp/pure-ftpd/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/servers/ftp/pure-ftpd/default.nix b/pkgs/servers/ftp/pure-ftpd/default.nix
index e56669645c3a6..b805c691e12e4 100644
--- a/pkgs/servers/ftp/pure-ftpd/default.nix
+++ b/pkgs/servers/ftp/pure-ftpd/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl }:
 
 stdenv.mkDerivation rec {
-  name = "pure-ftpd-1.0.42";
+  name = "pure-ftpd-1.0.46";
 
   src = fetchurl {
     url = "https://download.pureftpd.org/pub/pure-ftpd/releases/${name}.tar.gz";
-    sha256 = "1yg7v1l3ng7c08nhh804k28y1f8ccmg0rq1a9l2sg45ib273mrvv";
+    sha256 = "0p0arcaz63fbb03fkavbc8z6m1f90p5vbnxb8mqlvpma6mrq0286";
   };
 
   meta = with stdenv.lib; {
@@ -15,5 +15,4 @@ stdenv.mkDerivation rec {
     maintainers = [ maintainers.lethalman ];
     platforms = platforms.linux;
   };
-
 }