* Thu Sep 25 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-11.sme

- fix wrong parameter SFTPDHParamFile in place of TLSDHParamFile [SME: 13183]
This commit is contained in:
2025-09-25 10:32:04 -04:00
parent 2c033c6a3d
commit ccffb7d25f
2 changed files with 6 additions and 3 deletions

View File

@@ -23,8 +23,8 @@
#/home/e-smith/dh.pem/4096.pem #/home/e-smith/dh.pem/4096.pem
my $ftpdhparam = "#no dh param"; my $ftpdhparam = "#no dh param";
$ftpdhparam = "SFTPDHParamFile /home/e-smith/dh.pem/2048.pem" if (dh_exists_good_size("2048","/home/e-smith/dh.pem/2048.pem")); $ftpdhparam = "TLSDHParamFile /home/e-smith/dh.pem/2048.pem" if (dh_exists_good_size("2048","/home/e-smith/dh.pem/2048.pem"));
$ftpdhparam = "SFTPDHParamFile /home/e-smith/dh.pem/4096.pem" if (dh_exists_good_size("4096","/home/e-smith/dh.pem/4096.pem")); $ftpdhparam = "TLSDHParamFile /home/e-smith/dh.pem/4096.pem" if (dh_exists_good_size("4096","/home/e-smith/dh.pem/4096.pem"));
my $ciphers = $ftp{CipherSuite} || $modSSL{CipherSuite} || $smeCiphers; my $ciphers = $ftp{CipherSuite} || $modSSL{CipherSuite} || $smeCiphers;
#SME11 proftpd 1.3.6 branch does not support TLS v1.3 #SME11 proftpd 1.3.6 branch does not support TLS v1.3

View File

@@ -4,7 +4,7 @@ Summary: smeserver specific proftpd configuration files and templates
%define name smeserver-proftpd %define name smeserver-proftpd
Name: %{name} Name: %{name}
%define version 11.0.0 %define version 11.0.0
%define release 10 %define release 11
Version: %{version} Version: %{version}
Release: %{release}%{?dist} Release: %{release}%{?dist}
License: GPL License: GPL
@@ -26,6 +26,9 @@ Provides: e-smith-proftpd
AutoReqProv: no AutoReqProv: no
%changelog %changelog
* Thu Sep 25 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-11.sme
- fix wrong parameter SFTPDHParamFile in place of TLSDHParamFile [SME: 13183]
* Wed May 28 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-10.sme * Wed May 28 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-10.sme
- fix proftpd used instead of ftp service [SME: 13015] - fix proftpd used instead of ftp service [SME: 13015]