I am trying to implement a cross platform auth scheme whereby users log
into a system running in a microsoft environment.  Then, when they want to
check their e-mail, they click a link in the form of:

mail.isoftcorp.com/auth?k=<sequence>

the key sequence is determined when they log into the main site and it is
databased.  then, they hit my server and I will take the key sequence and
query the databse:

1)      The database returns foo, I deny the request (this I can eaily do)

2)      The database returns bar, I rewirte the request into a post.  The
handler would rerite the request and then turn it back over to apache for
further processing:

my new request would be in thr form of:
$request=HTTP::Request->new(POST=>'http://mail.isoftcotp.com/index.pl',
[var1=>'hojo',var2=>'val2']); #where val1 and val2 are from the DB


However, I do not know how to rewirte the request in this way and use it
in a handler. What would be the proper way to rewrite the request?  Which
handler should I use?

If I need to provide any more info, fell free to ask.  

Reply via email to