At 11:08 PM 1/14/2001 +0000, you wrote:
>I seem to recall Randal did a column in Web Techniques on just such a
>thing. Check
<http://www.stonehenge.com/merlyn/>http://www.stonehenge.com/merlyn/
>
>> I want an authorization module to generate a one time password for a
>> particular user name.

I think I found the article:
<http://www.webtechniques.com/archives/2000/05/perl>http://www.webtechnique
s.com/archives/2000/05/perl/
Self-Registering Password Protection, Part 1 

Randal's requirements were some what similar.  I wanted to randomly generate
the password for a particular user after they log in a limited number of times
and then send email to someone.

After reading the article, I thinking the best way to implement my
requirements
would be to create (or modify) an authentication module that would keep track
of how many times a user logs in and also be able to trigger (REDIRECT to) a
cgi script when certain conditions are meet.  My cgi script (custom
requirements) could then regenerate the new password and do any the
notifications required.  

The authentication trigger (REDIRECT) would be the trick, in that it should be
generic enough to allow for a whole range of other situations.  

Reply via email to