Name

Environment — specify environment variables to inherit from the calling CGI link program

SYNOPSIS

environment_variable_name...

DESCRIPTION

Specify environment variables to inherit from the calling CGI link program.

DIRECTIVE TYPE AND DEFAULT VALUE

Global directive

EXAMPLES

Example: Setting Environment directive

Environment MOD_PERL REMOTE_USER PGPPATH

NOTES

AVAILABILITY

Environment is available in Interchange versions:

4.6.0-5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: lib/Vend/Config.pm
Line 433

['Environment',      'array',            ''],

Source: lib/Vend/Config.pm
Line 3780 (context shows lines 3780-3800)

sub parse_array {
my($item,$settings) = @_;
return '' unless $settings;
my(@setting) = grep /\S/, split /[\s,]+/, $settings;

my $c;

if(defined $C) {
  $c = $C->{$item} || [];
}
else {
  no strict 'refs';
  $c = ${"Global::$item"} || [];
}

for (@setting) {
  check_legal($item, $_);
  push @{$c}, $_;
}
$c;
}

AUTHORS

Interchange Development Group

SEE ALSO

RemoteUser(7ic)

DocBook! Interchange!