5 Commits

Author SHA1 Message Date
4d885d2cf4 * Sat Oct 04 2025 Brian Read <brianr@koozali.org> 1.4-12.sme
- Delete en.pm and create .lex file if needed [SME: 13214]
2025-10-04 12:16:32 +01:00
7e849665c4 * Sat Oct 04 2025 Brian Read <brianr@koozali.org> 1.4-11.sme
- Remove smanager-refresh from spec file [SME: 13212]
2025-10-04 09:16:41 +01:00
ebc323bead * Wed Sep 24 2025 Brian Read <brianr@koozali.org> 1.4-10.sme
- Sort out archive on git stopping local archive update [SME: 13171]
2025-09-24 13:58:13 +01:00
3137872240 * Tue Sep 23 2025 Brian Read <brianr@koozali.org> 1.4-9.sme
- Change $config to config in layout file(s) [SME: 13171]
2025-09-23 13:06:29 +01:00
c91dbf5037 Update README with specific Bugzilla links 2024-10-27 15:37:22 +00:00
5 changed files with 23 additions and 28 deletions

2
.gitignore vendored
View File

@@ -1,4 +1,4 @@
*.rpm
*.log
*spec-20*
*.tar.gz
*.tar.xz

View File

@@ -9,7 +9,14 @@ SMEServer Koozali developed git repo for smeserver-domains smecontribs
<br />https://wiki.koozali.org/Esmith::FormMagick::Panel::domains
## Bugzilla
Show list of outstanding bugs: [here](https://bugs.koozali.org/buglist.cgi?component=smeserver-domains&product=SME%20Contribs&query_format=advanced&limit=0&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=CONFIRMED)
Show list of outstanding bugs:
[All](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=UNCONFIRMED&bug_status=CONFIRMED&bug_status=NEEDINFO&bug_status=IN_PROGRESS&bug_status=RESOLVED&bug_status=VERIFIED&classification=Contribs&component=smeserver-domains&list_id=105781&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&product=SME+Contribs&query_format=advanced)
[Confirmed](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=CONFIRMED&classification=Contribs&component=smeserver-domains&list_id=105781&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&product=SME+Contribs&query_format=advanced)
[Unconfirmed](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=UNCONFIRMED&classification=Contribs&component=smeserver-domains&list_id=105781&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&product=SME+Contribs&query_format=advanced)
[Need Info](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=NEEDINFO&classification=Contribs&component=smeserver-domains&list_id=105781&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&product=SME+Contribs&query_format=advanced)
[In Progress](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=IN_PROGRESS&classification=Contribs&component=smeserver-domains&list_id=105781&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&product=SME+Contribs&query_format=advanced)
[Verified](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=VERIFIED&classification=Contribs&component=smeserver-domains&list_id=105781&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&product=SME+Contribs&query_format=advanced)
[Resolved](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=RESOLVED&classification=Contribs&component=smeserver-domains&list_id=105781&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&product=SME+Contribs&query_format=advanced)
## Description

View File

@@ -1,12 +1,3 @@
package SrvMngr::I18N::Modules::Dungog_domains::en;
use strict;
use warnings;
use utf8;
use Mojo::Base 'SrvMngr::I18N';
use SrvMngr::I18N::Modules::General::en;
my %lexicon = (
'ddo_title' =>'Domain Pseudonyms',
'ddo_Final_Save' => 'Settings saved and email restarted.',
'ddo_Intro' => 'Set pseudonyms specifically for a single domain,<br>This panel just shows the pseudonyms for a each single domain.<br>See also the <a href="/smanager/pseudonyms">Pseudonyms</a> panel to set global pseudonyms.<br>Documentation: <a href="https://wiki.contribs.org/Domains">https://wiki.contribs.org/Domains</a>',
@@ -52,14 +43,3 @@ For full access delegate this panel, dungog-domains.',
'ddo_alternative_admin' => 'Alternative administrator:',
'ddo_restrict_to_group'=>'Restrict the userlist in the email dropdown box to the Administrator or members of a group',
'ddo_Alternative_group'=>'Alternative group:'
);
our %Lexicon = (
%{ SrvMngr::I18N::Modules::General::en::Lexicon },
%lexicon
);
1;

View File

@@ -3,7 +3,7 @@
% content_for 'module' => begin
<div id="module" class="module domains-panel">
% if ($config->{debug} == 1) {
% if (config->{debug} == 1) {
<p>
%= dumper $c->current_route
</p>

View File

@@ -1,6 +1,6 @@
%define name smeserver-domains
%define version 1.4
%define release 8
%define release 12
Summary: SMEserver rpm for domain pseudonyms
Name: %{name}
Version: %{version}
@@ -22,6 +22,18 @@ AutoReqProv: no
SMEserver rpm for more advanced domain controls
%changelog
* Sat Oct 04 2025 Brian Read <brianr@koozali.org> 1.4-12.sme
- Delete en.pm and create .lex file if needed [SME: 13214]
* Sat Oct 04 2025 Brian Read <brianr@koozali.org> 1.4-11.sme
- Remove smanager-refresh from spec file [SME: 13212]
* Wed Sep 24 2025 Brian Read <brianr@koozali.org> 1.4-10.sme
- Sort out archive on git stopping local archive update [SME: 13171]
* Tue Sep 23 2025 Brian Read <brianr@koozali.org> 1.4-9.sme
- Change $config to config in layout file(s) [SME: 13171]
* Sun Sep 08 2024 fix-e-smith-pkg.sh by Trevor Batley <trevor@batley.id.au> 1.4-8.sme
- Fix e-smith references in smeserver-domains [SME: 12732]
@@ -88,10 +100,6 @@ if [ $1 = 1 ] ; then
/bin/touch /home/e-smith/db/dungog
fi
if (systemctl list-unit-files |grep smanager) then
echo "Smanager restart in spec file"
/sbin/e-smith/signal-event smanager-refresh;
fi