----- Original Message -----
From: <[EMAIL PROTECTED]>
>
> a handler... REMOTE_USER needs to be changed
> I used $r->subprocess_env
> doesn't work.
Funny, I'm just playing with something like this myself. I wrote an
authentication handler that does magic stuff with the DB and other neeto
decision making. We use cgi and mod_perl scripts, so this is what I learned:
#-- Works for cgi
$ENV{SOME_KEY} = $some_value
#-- Works for mod_perl
$r->subprocess_env(SOME_KEY => $some_value;
You can see my problem in my mail: "ENV var names rewritten to REDIRECT_*"
Rodney