in reply to Re^2: Authorization HTTP header isn't coming through - why?
in thread Authorization HTTP header isn't coming through - why?

It's available as $cgi->remote_user (which it gets from $ENV{REMOTE_USER}).
  • Comment on Re^3: Authorization HTTP header isn't coming through - why?

Replies are listed 'Best First'.
Re^4: Authorization HTTP header isn't coming through - why?
by isync (Hermit) on Aug 23, 2010 at 20:50 UTC
    slap on the forehead... of course!

    I've overseen this.. So I could summarize the lesson learned as:
    the actual authentication ('Authorization' header) isn't accessible for the script, but once a user is logged in/authenticated, the 'Remote-User' header is set and this *is* part of the script's %ENV and thus accessible.