* Thu Jan 02 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-20.sme

- Primary default to SSL required and redirect [SME: 12858]
- cleanup remove primary=system [SME: 8268]
This commit is contained in:
Jean-Philippe Pialasse 2025-01-02 00:36:45 -05:00
parent 5b938b2987
commit 5c4bf19137
5 changed files with 17 additions and 2 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@
*spec-20* *spec-20*
*.tar.xz *.tar.xz
*.bak *.bak
*gz

View File

@ -0,0 +1 @@
enabled

View File

@ -1 +0,0 @@
system

View File

@ -0,0 +1,10 @@
{
# Delete any pre-existing primary=system record (all lower case)
my $p = $DB->get('primary');
return unless defined $p;
my $type = $p->prop('type');
return unless defined $type;
$p->delete if $type eq 'system';
}

View File

@ -4,7 +4,7 @@ Summary: smeserver server and gateway - base module
%define name smeserver-base %define name smeserver-base
Name: %{name} Name: %{name}
%define version 11.0.0 %define version 11.0.0
%define release 19 %define release 20
Version: %{version} Version: %{version}
Release: %{release}%{?dist} Release: %{release}%{?dist}
License: GPL License: GPL
@ -184,6 +184,10 @@ fi
%changelog %changelog
* Thu Jan 02 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-20.sme
- Primary default to SSL required and redirect [SME: 12858]
- cleanup remove primary=system [SME: 8268]
* Tue Dec 31 2024 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-19.sme * Tue Dec 31 2024 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-19.sme
- fix www removed from shared on group creation [SME: 12848] - fix www removed from shared on group creation [SME: 12848]