Re: [us...@httpd] Setting CGI environment variables, dynamically, from httpd.conf leveraging exising variables

2010-09-29 Thread David (Dave) Donnan
Hello everybody. Eric, thanks for the rapide response. I took the $PATH of least resistance, corrected Technique #1, and now it WORKS ! httpd.conf: RewriteEngine on RewriteRule .* - [E=SMUSER:%{LA-U:REMOTE_USER}] Result (setenv.pl): ... SMUSER=my-LDAP-userid :-) ... Thanks

Re: [us...@httpd] Setting CGI environment variables, dynamically, from httpd.conf leveraging exising variables

2010-09-28 Thread Eric Covener
On Tue, Sep 28, 2010 at 10:02 AM, David (Dave) Donnan david.don...@thalesgroup.com wrote: RewriteEngine on RewriteRule .* - [E=SMUSER:%{$REMOTE_USER}] RequestHeader set my_new_header %{SMUSER}e     Result from my browser (setenv.pl):     SMUSER= I think the $ is extraneous and