Displaying 5 results from an estimated 5 matches for "pworg".
Did you mean:
pword
2017 Mar 27
3
Users list and the date the password will expire
On Sun, 26 Mar 2017 19:31:48 -0400 Mark Foley wrote:
>
> On Sun, 26 Mar 2017 19:53:01 +0100 Rowland Penny wrote:
> >
> > On Sun, 26 Mar 2017 14:32:53 -0400
> > Mark Foley via samba <samba at lists.samba.org> wrote:
> >
> >
> > > as root:
> > >
> > > ldbsearch --url=ldap://mail -b "DC=hprs,DC=local" -s sub
> >
2017 Mar 27
0
Users list and the date the password will expire
...but it is
in the SlackBuilds repository. I'll install it and check it out.
On Mon, 27 Mar 2017 13:32:53 -0400 Matt Savin wrote:
>
> Hello Mark,
>
> Thank you for sharing! I would probably replace password length and
> complexity check with:
>
> if [[ $(echo -e "$pw1\n$pwOrg\n$USER"| \
> pwqcheck min=disabled,disabled,disabled,8,8 max=20 match=4) \
> == OK && $? -eq 0 ]]; then echo yes; fi
>
> Cons: depends on passwdqc package, which is part of most distributions.
> Pros: does substring matching.
>
> Regards,
> Matt
>
>...
2017 Mar 27
0
Users list and the date the password will expire
...; \
--image "$IMAGE" --image-on-top --title "$TITLE" \
--text="$MSG" \
--align=right \
--field="Enter current password:H" \
--field="Enter new password:H" \
--field="Confirm Password:H"`
pwOrg=`echo "$pw" | cut "-d~" -f1`
pw1=`echo "$pw" | cut "-d~" -f2`
pw2=`echo "$pw" | cut "-d~" -f3`
if [ -z "$pwOrg" ] && [ -z "$pw1" ] && [ -z "$pw2" ]; then exit 0; fi # user cancele...
2018 Apr 04
2
How to change Domain password as normal user?
On Tue, 03 Apr 2018 23:34:13 -0400
Mark Foley via samba <samba at lists.samba.org> wrote:
> On Sat, 31 Mar 2018 17:04:22 +0100 Rowland Penny <rpenny at samba.org>
> wrote:
> >
> > On Sat, 31 Mar 2018 11:42:07 -0400
> > Mark Foley via samba <samba at lists.samba.org> wrote:
> >
> > > On Sat, 31 Mar 2018 12:25:14 +0100 Rowland Penny
> >
2018 Apr 04
0
How to change Domain password as normal user?
...\
--image "$IMAGE" --image-on-top --title "$TITLE" \
--text="$MSG" \
--align=right \
--field="Enter current password:H" \
--field="Enter new password:H" \
--field="Confirm Password::H"`
pwOrg=`echo "$pw" | cut "-d~" -f1`
pw1=`echo "$pw" | cut "-d~" -f2`
pw2=`echo "$pw" | cut "-d~" -f3`
if [ -z "$pwOrg" ] && [ -z "$pw1" ] && [ -z "$pw2" ]; then exit 0; fi # Cancel...