Password Expiry?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
9 messages Options
Reply | Threaded
Open this post in threaded view
|

Password Expiry?

samhamilton
Hi Guys,

Is there a function in OFBiz to automatically expire passwords and force
the users to change say monthly or after a preset number of days? I have
had a hunt round nabble but nothing seems to be coming back?

Cheers
Sam
Reply | Threaded
Open this post in threaded view
|

Re: Password Expiry?

Mukesh Marathe-4
Hi Sam,

Look at this property file for password settings
/framework/security/config/security.properties

Thanks
Mukesh Marathe
On 7/13/2010 1:47 PM, Sam Hamilton wrote:

> Hi Guys,
>
> Is there a function in OFBiz to automatically expire passwords and force
> the users to change say monthly or after a preset number of days? I have
> had a hunt round nabble but nothing seems to be coming back?
>
> Cheers
> Sam
>
>    

Reply | Threaded
Open this post in threaded view
|

Re: Password Expiry?

samhamilton
Thanks Mukesh - it had everything except password expiry. I guess it
probably needs building!

Cheers
Sam




On 13/07/2010 16:23, Mukesh wrote:

> Hi Sam,
>
> Look at this property file for password settings
> /framework/security/config/security.properties
>
> Thanks
> Mukesh Marathe
> On 7/13/2010 1:47 PM, Sam Hamilton wrote:
>> Hi Guys,
>>
>> Is there a function in OFBiz to automatically expire passwords and force
>> the users to change say monthly or after a preset number of days? I have
>> had a hunt round nabble but nothing seems to be coming back?
>>
>> Cheers
>> Sam
>>
>>    
>
>

Reply | Threaded
Open this post in threaded view
|

Re: Password Expiry?

BJ Freeman
In reply to this post by samhamilton
there is a flag to force a new password. you can write a schedule
service to reset this based on last updated time stamp.

Sam Hamilton sent the following on 7/13/2010 1:17 AM:
> Hi Guys,
>
> Is there a function in OFBiz to automatically expire passwords and force
> the users to change say monthly or after a preset number of days? I have
> had a hunt round nabble but nothing seems to be coming back?
>
> Cheers
> Sam
>
Reply | Threaded
Open this post in threaded view
|

Re: Password Expiry?

Scott Gray-2
You'd probably want to make use of the UserLoginPasswordHistory entity.  Running a nightly job that checks for null thruDates and fromDates earlier than the configured period would probably do the trick.

Regards
Scott

HotWax Media
http://www.hotwaxmedia.com

On 14/07/2010, at 2:25 AM, BJ Freeman wrote:

> there is a flag to force a new password. you can write a schedule service to reset this based on last updated time stamp.
>
> Sam Hamilton sent the following on 7/13/2010 1:17 AM:
>> Hi Guys,
>>
>> Is there a function in OFBiz to automatically expire passwords and force
>> the users to change say monthly or after a preset number of days? I have
>> had a hunt round nabble but nothing seems to be coming back?
>>
>> Cheers
>> Sam
>>


smime.p7s (3K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Password Expiry?

BJ Freeman
null fromdates should be an ECA for all entities that have that field,
IMHO, and not count on code.

Scott Gray sent the following on 7/13/2010 2:27 PM:

> You'd probably want to make use of the UserLoginPasswordHistory entity.  Running a nightly job that checks for null thruDates and fromDates earlier than the configured period would probably do the trick.
>
> Regards
> Scott
>
> HotWax Media
> http://www.hotwaxmedia.com
>
> On 14/07/2010, at 2:25 AM, BJ Freeman wrote:
>
>> there is a flag to force a new password. you can write a schedule service to reset this based on last updated time stamp.
>>
>> Sam Hamilton sent the following on 7/13/2010 1:17 AM:
>>> Hi Guys,
>>>
>>> Is there a function in OFBiz to automatically expire passwords and force
>>> the users to change say monthly or after a preset number of days? I have
>>> had a hunt round nabble but nothing seems to be coming back?
>>>
>>> Cheers
>>> Sam
>>>
>
Reply | Threaded
Open this post in threaded view
|

Re: Password Expiry?

Scott Gray-2
I'm not sure what your are saying but I didn't mention null fromDates.  I said:
check for null thruDates
AND
fromDates earlier than the configured period

Regards
Scott

On 14/07/2010, at 1:08 PM, BJ Freeman wrote:

> null fromdates should be an ECA for all entities that have that field, IMHO, and not count on code.
>
> Scott Gray sent the following on 7/13/2010 2:27 PM:
>> You'd probably want to make use of the UserLoginPasswordHistory entity.  Running a nightly job that checks for null thruDates and fromDates earlier than the configured period would probably do the trick.
>>
>> Regards
>> Scott
>>
>> HotWax Media
>> http://www.hotwaxmedia.com
>>
>> On 14/07/2010, at 2:25 AM, BJ Freeman wrote:
>>
>>> there is a flag to force a new password. you can write a schedule service to reset this based on last updated time stamp.
>>>
>>> Sam Hamilton sent the following on 7/13/2010 1:17 AM:
>>>> Hi Guys,
>>>>
>>>> Is there a function in OFBiz to automatically expire passwords and force
>>>> the users to change say monthly or after a preset number of days? I have
>>>> had a hunt round nabble but nothing seems to be coming back?
>>>>
>>>> Cheers
>>>> Sam
>>>>
>>


smime.p7s (3K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Password Expiry?

BJ Freeman
yes correct I misread and fromdates earlier.

Scott Gray sent the following on 7/13/2010 6:16 PM:

> I'm not sure what your are saying but I didn't mention null fromDates.  I said:
> check for null thruDates
> AND
> fromDates earlier than the configured period
>
> Regards
> Scott
>
> On 14/07/2010, at 1:08 PM, BJ Freeman wrote:
>
>> null fromdates should be an ECA for all entities that have that field, IMHO, and not count on code.
>>
>> Scott Gray sent the following on 7/13/2010 2:27 PM:
>>> You'd probably want to make use of the UserLoginPasswordHistory entity.  Running a nightly job that checks for null thruDates and fromDates earlier than the configured period would probably do the trick.
>>>
>>> Regards
>>> Scott
>>>
>>> HotWax Media
>>> http://www.hotwaxmedia.com
>>>
>>> On 14/07/2010, at 2:25 AM, BJ Freeman wrote:
>>>
>>>> there is a flag to force a new password. you can write a schedule service to reset this based on last updated time stamp.
>>>>
>>>> Sam Hamilton sent the following on 7/13/2010 1:17 AM:
>>>>> Hi Guys,
>>>>>
>>>>> Is there a function in OFBiz to automatically expire passwords and force
>>>>> the users to change say monthly or after a preset number of days? I have
>>>>> had a hunt round nabble but nothing seems to be coming back?
>>>>>
>>>>> Cheers
>>>>> Sam
>>>>>
>>>
>
Reply | Threaded
Open this post in threaded view
|

Re: Password Expiry?

samhamilton
Thanks guys - I will try and work out how services work.

Cheers
Sam


On 14/07/2010 09:34, BJ Freeman wrote:

> yes correct I misread and fromdates earlier.
>
> Scott Gray sent the following on 7/13/2010 6:16 PM:
>> I'm not sure what your are saying but I didn't mention null
>> fromDates.  I said:
>> check for null thruDates
>> AND
>> fromDates earlier than the configured period
>>
>> Regards
>> Scott
>>
>> On 14/07/2010, at 1:08 PM, BJ Freeman wrote:
>>
>>> null fromdates should be an ECA for all entities that have that
>>> field, IMHO, and not count on code.
>>>
>>> Scott Gray sent the following on 7/13/2010 2:27 PM:
>>>> You'd probably want to make use of the UserLoginPasswordHistory
>>>> entity.  Running a nightly job that checks for null thruDates and
>>>> fromDates earlier than the configured period would probably do the
>>>> trick.
>>>>
>>>> Regards
>>>> Scott
>>>>
>>>> HotWax Media
>>>> http://www.hotwaxmedia.com
>>>>
>>>> On 14/07/2010, at 2:25 AM, BJ Freeman wrote:
>>>>
>>>>> there is a flag to force a new password. you can write a schedule
>>>>> service to reset this based on last updated time stamp.
>>>>>
>>>>> Sam Hamilton sent the following on 7/13/2010 1:17 AM:
>>>>>> Hi Guys,
>>>>>>
>>>>>> Is there a function in OFBiz to automatically expire passwords and
>>>>>> force
>>>>>> the users to change say monthly or after a preset number of days?
>>>>>> I have
>>>>>> had a hunt round nabble but nothing seems to be coming back?
>>>>>>
>>>>>> Cheers
>>>>>> Sam
>>>>>>
>>>>
>>