Re: [EMAIL PROTECTED] Modifying environment variables passed to CGI's.

2006-10-04 Thread Rob Wilkerson
On Oct 4, 2006, at 5:01 PM, Jason Lingel wrote: Thanks for your help. It pointed me in the right direction, though it still doesn't quite work. Here are the entries I made in my httpd.conf: RewriteLog /opt/asn/logs/rewrite.log RewriteLogLevel 5 RewriteCond %{LA-U:REMOTE_USER} ^(.*)@ COMP

Re: [EMAIL PROTECTED] Modifying environment variables passed to CGI's.

2006-10-04 Thread Joshua Slive
On 10/4/06, Jason Lingel <[EMAIL PROTECTED]> wrote: Thanks for your help. It pointed me in the right direction, though it still doesn't quite work. Here are the entries I made in my httpd.conf: RewriteLog /opt/asn/logs/rewrite.log RewriteLogLevel 5 RewriteCond %{LA-U:REMOTE_USER} ^(.*)@ COMPAN

Re: [EMAIL PROTECTED] Modifying environment variables passed to CGI's.

2006-10-04 Thread Jason Lingel
Thanks for your help.  It pointed me in the right direction, though it still doesn't quite work.  Here are the entries I made in my httpd.conf:RewriteLog /opt/asn/logs/rewrite.logRewriteLogLevel 5RewriteCond %{LA-U:REMOTE_USER} ^(.*)@ COMPANY.COM$RewriteRule /.* - [E=REMOTE_USER:%1]My intent is to

Re: [EMAIL PROTECTED] Modifying environment variables passed to CGI's.

2006-10-03 Thread Rob Wilkerson
On Oct 3, 2006, at 7:08 PM, Jason Lingel wrote: Is there a way to modify an environment variable that gets passed to a CGI? For example, I'm doing Kerberos authentication and the realm gets appended to the REMOTE_USER variable, e.g., REMOTE_USER= [EMAIL PROTECTED] I just want username an

[EMAIL PROTECTED] Modifying environment variables passed to CGI's.

2006-10-03 Thread Jason Lingel
Is there a way to modify an environment variable that gets passed to a CGI?  For example, I'm doing Kerberos authentication and the realm gets appended to the REMOTE_USER variable, e.g., REMOTE_USER= [EMAIL PROTECTED].  I just want username and not the realm.  I would prefer not to do this in the C