Summary | Problem with shadowlastchange attribute |
Queue | Passwd |
Queue Version | 3.0.1 |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | |
Requester | h35.office (at) bmlv (dot) gv (dot) at |
Created | 07/15/2008 (6221 days ago) |
Due | |
Updated | 11/14/2017 (2812 days ago) |
Assigned | 07/17/2008 (6219 days ago) |
Resolved | 07/21/2008 (6215 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
commit 5a240b032238fa1b28159e83876795e32f423dbc
Author: Jan Schneider <jan@horde.org>
Date: Tue, 14 Nov 2017 17:38:01 +0100
LDAP is supposed to be builtin now (travis-ci/travis-ci#7067).
R .travis.ini
M .travis.yml
https://github.com/horde/Ldap/commit/5a240b032238fa1b28159e83876795e32f423dbc
commit df63814cad2fbd48001d7fa09614579576c258aa
Author: Jan Schneider <jan@horde.org>
Date: Tue, 14 Nov 2017 17:37:31 +0100
LDAP is supposed to be builtin now (travis-ci/travis-ci#7067).
R .travis.ini
M .travis.yml
https://github.com/horde/Ldap/commit/df63814cad2fbd48001d7fa09614579576c258aa
commit 206400371c4815e81b12e93ac5bfc099658acba9
Author: Jan Schneider <jan@horde.org>
Date: Wed Sep 6 14:12:40 2017 +0200
Trusty doesn't work.
Trusty builds don't work due to travis-ci/travis-ci#7067 still
not being fixed.
.travis.yml | 1 +
1 file changed, 1 insertion(+)
http://github.com/horde/horde/commit/206400371c4815e81b12e93ac5bfc099658acba9
spent into the ldap driver.
No, I got it from the download page.
No, I got it from the download page. The strange is that the passwd
command set the shadowlastchange attribute, but smbpasswd didn't do
that.
My question is how does the smbldap driver works? Does the driver use
the passwd command or the smbpasswd?
Paul
State ⇒ Feedback
spent into the ldap driver.
Milestone ⇒
State ⇒ Unconfirmed
Patch ⇒ No
Queue ⇒ Passwd
Summary ⇒ Problem with shadowlastchange attribute
Type ⇒ Bug
Priority ⇒ 1. Low
The smbldap Driver does not change the shadowlastchange attribute.
My backend:
$backends['smbldap'] = array(
'name' => 'Samba-Server',
'preferred' => 'xxxxxx.NET',
'password policy' => array(
'minLength' => 3,
'maxLength' => 8
),
'driver' => 'smbldap',
'params' => array(
'host' => 'localhost',
'port' => 389,
'basedn' => 'dc=xxxxxxxx,dc=net',
'uid' => 'uid',
// this will be appended to the username when looking for the userdn.
'realm' => '',
'encryption' => 'crypt',
// make sure the host == cn in the server certificate
'tls' => false,
'lm_attribute' => 'sambaLMPassword',
'nt_attribute' => 'sambaNTPassword',
'pw_set_attribute' => 'sambaPwdLastSet',
'pw_expire_attribute' => 'sambaPwdMustChange',
'pw_expire_time' => 180, // number of days until samba
password expires
)
);
greetings Paul