2 Commits

Author SHA1 Message Date
John Crisp
c31367eee3 Set KEY_ALFO default to rsa - thanks Knuddi [SME: 13109] 2025-08-25 15:42:05 +02:00
fa30cb09be * Fri Jun 27 2025 Brian Read <brianr@koozali.org> 11.0-7.sme
- Bring default theme into line with changes made for AdminLTE theme [SME: 13049]
2025-06-27 15:10:58 +01:00
4 changed files with 20 additions and 5 deletions

View File

@@ -0,0 +1 @@
rsa

View File

@@ -1,6 +1,6 @@
# Which public key algorithm should be used? Supported: rsa, prime256v1 and secp384r1
# KEY_ALGO=secp384r1 (default)
#elliptic curve was not supported (qpsmtpd and perl-IO-Socket-SSL < 1.95)
# elliptic curve was not supported (qpsmtpd and perl-IO-Socket-SSL < 1.95)
# SME 11 has perl-IO-Socket-SSL-2.066
#KEY_ALGO=rsa
KEY_ALGO="{$letsencrypt{algorithm}||rsa}"

View File

@@ -89,6 +89,8 @@
<br></span></p>
<h2 class='subh4'><%=l('lets_List_of_Domains_and_Hosts')%></h2>
% my $linkbtn = l 'lets_CHECK';
<br /><table class="sme-border TableSort sme-table tabl1 ">
<thead class='tabl1'>
@@ -106,6 +108,7 @@
<tbody class='tabl1'>
% my $control_data = $c->stash('DomainList');
% foreach my $row (@$control_data) {
% my $link = $c->render_to_string(inline=>$row->{'Table1-CHECK'});
<tr class='table-row'>
<td class='sme-border table-col table-col-Table1-Domain name / HOSTNAME'><%=$c->render_to_string(inline=>$row->{'Table1-Domain name / HOSTNAME'})%></td>
<td class='sme-border table-col table-col-Table1-Brief description'><%=$c->render_to_string(inline=>$row->{'Table1-Brief description'})%></td>
@@ -114,7 +117,11 @@
<td class='sme-border table-col table-col-Table1-LABEL_POINT'><%=$c->render_to_string(inline=>$row->{'Table1-LABEL_POINT'})%></td>
<td class='sme-border table-col table-col-Table1-LABEL_LECERT'><%=$c->render_to_string(inline=>$row->{'Table1-LABEL_LECERT'})%></td>
<td class='sme-border table-col table-col-Table1-IS_IN_CERT'><%=$c->render_to_string(inline=>$row->{'Table1-IS_IN_CERT'})%></td>
<td class='sme-border table-col table-col-Table1-CHECK'><%=$c->render_to_string(inline=>$row->{'Table1-CHECK'})%></td>
% if ($link ne "") {
<td><a href= "<%= $link %>" class="btn btn-outline-primary btn-sm" role="button" > <%= $linkbtn %></a></td>
% } else {
<td>&nbsp</td>
% }
</tr>
%}
</tbody>

View File

@@ -1,6 +1,6 @@
%define name smeserver-certificates
%define version 11.0
%define release 6
%define release 8
Summary: This is what smeserver-certificates does.
Name: %{name}
Version: %{version}
@@ -18,13 +18,20 @@ Requires: smeserver-release >= 11.0
Requires: q
Requires: jq
Requires: dehydrated >= 0.6.5
Requires: smeserver-manager >= 11.0.0-52
Requires: smeserver-manager >= 11.0.0-110
AutoReqProv: no
%description
%changelog
* Mon Aug 25 2025 John Crisp <jcrisp@safeandsoundit.co.uk> 11.0-8.sme
- Set KEY_ALFO default to rsa - thanks Knuddi [SME: 13109]
- bump server-manager version
* Fri Jun 27 2025 Brian Read <brianr@koozali.org> 11.0-7.sme
- Bring default theme into line with changes made for AdminLTE theme [SME: 13049]
* Tue Jun 17 2025 John Crisp <jcrisp@safeandsoundit.co.uk> 11.0-6.sme
- Remove formatting from controller file [SME: 13045]
- Add Domain/Host as Types for template checking [SME: 13045]