Compare commits
6 Commits
11_0_0-3_e
...
master
Author | SHA1 | Date | |
---|---|---|---|
f5df132cf1 | |||
a107c94bc0 | |||
74a71c3312 | |||
7cedc6f0fd | |||
e8485b2deb | |||
ec237332cc |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -2,3 +2,4 @@
|
|||||||
*.log
|
*.log
|
||||||
*spec-20*
|
*spec-20*
|
||||||
*.tar.xz
|
*.tar.xz
|
||||||
|
*.bak
|
||||||
|
@@ -6,7 +6,14 @@ SMEServer Koozali developed git repo for smeserver-formmagick smeserver
|
|||||||
<br />https://wiki.koozali.org/
|
<br />https://wiki.koozali.org/
|
||||||
|
|
||||||
## Bugzilla
|
## Bugzilla
|
||||||
Show list of outstanding bugs: [here](https://bugs.koozali.org/buglist.cgi?component=smeserver-formmagick&product=SME%20Server%2010.X&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&cf_package=smeserver-formmagick&classification=SME+Server&list_id=105756&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&query_format=advanced)
|
||||||
|
[Confirmed](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=CONFIRMED&cf_package=smeserver-formmagick&classification=SME+Server&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&query_format=advanced)
|
||||||
|
[Unconfirmed](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=UNCONFIRMED&cf_package=smeserver-formmagick&classification=SME+Server&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&query_format=advanced)
|
||||||
|
[Need info](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=NEEDINFO&cf_package=smeserver-formmagick&classification=SME+Server&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&query_format=advanced)
|
||||||
|
[In progress](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=IN_PROGRESS&cf_package=smeserver-formmagick&classification=SME+Server&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&query_format=advanced)
|
||||||
|
[Resolved](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=RESOLVED&cf_package=smeserver-formmagick&classification=SME+Server&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&query_format=advanced)
|
||||||
|
[Verified](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=VERIFIED&cf_package=smeserver-formmagick&classification=SME+Server&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&query_format=advanced)
|
||||||
And a list of outstanding Legacy bugs: (e-smith-formmagick) [here](https://bugs.koozali.org/buglist.cgi?component=e-smith-formmagick&product=SME%20Server%2010.X&query_format=advanced&limit=0&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=CONFIRMED)
|
And a list of outstanding Legacy bugs: (e-smith-formmagick) [here](https://bugs.koozali.org/buglist.cgi?component=e-smith-formmagick&product=SME%20Server%2010.X&query_format=advanced&limit=0&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=CONFIRMED)
|
||||||
|
|
||||||
## Description
|
## Description
|
||||||
|
@@ -1 +0,0 @@
|
|||||||
sme10
|
|
@@ -798,26 +798,7 @@ sub validate_password
|
|||||||
{
|
{
|
||||||
my ($fm,$strength,$pass) = @_;
|
my ($fm,$strength,$pass) = @_;
|
||||||
|
|
||||||
use Crypt::Cracklib;
|
my $reason = esmith::util::validatePassword($pass,$strength);
|
||||||
|
|
||||||
my $reason;
|
|
||||||
|
|
||||||
if ($strength eq "none") {
|
|
||||||
return $fm->localise("Passwords must be at least 7 characters long") unless (length($pass) > 6);
|
|
||||||
return "OK";
|
|
||||||
}
|
|
||||||
|
|
||||||
$reason = $fm->call_fm_validation('password', $pass, undef);
|
|
||||||
|
|
||||||
return $reason unless ($reason eq "OK");
|
|
||||||
return "OK" unless ($strength eq "strong");
|
|
||||||
|
|
||||||
if ( -f '/usr/lib64/cracklib_dict.pwd' ) {
|
|
||||||
$reason = fascist_check($pass, '/usr/lib64/cracklib_dict');
|
|
||||||
} else {
|
|
||||||
$reason = fascist_check($pass, '/usr/lib/cracklib_dict');
|
|
||||||
}
|
|
||||||
$reason ||= "Software error: password check failed";
|
|
||||||
|
|
||||||
return "OK" if ($reason eq "ok");
|
return "OK" if ($reason eq "ok");
|
||||||
|
|
||||||
|
@@ -4,7 +4,7 @@ Summary: smeserver-formmagick Perl modules for web manager i18n
|
|||||||
%define name smeserver-formmagick
|
%define name smeserver-formmagick
|
||||||
Name: %{name}
|
Name: %{name}
|
||||||
%define version 11.0.0
|
%define version 11.0.0
|
||||||
%define release 3
|
%define release 5
|
||||||
Version: %{version}
|
Version: %{version}
|
||||||
Release: %{release}%{?dist}
|
Release: %{release}%{?dist}
|
||||||
License: Artistic
|
License: Artistic
|
||||||
@@ -22,6 +22,12 @@ BuildArchitectures: noarch
|
|||||||
Provides: e-smith-formmagick
|
Provides: e-smith-formmagick
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Feb 21 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-5.sme
|
||||||
|
- password requirement is different in panel and from samba [SME: 12382]
|
||||||
|
|
||||||
|
* Wed Apr 17 2024 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-4.sme
|
||||||
|
- rename update event
|
||||||
|
|
||||||
* Thu Apr 04 2024 Brian Read <brianr@koozali.org> 11.0.0-3.sme
|
* Thu Apr 04 2024 Brian Read <brianr@koozali.org> 11.0.0-3.sme
|
||||||
- Set license file to GPL2.0 [SME: 12577]
|
- Set license file to GPL2.0 [SME: 12577]
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user