X-Git-Url: https://git.exim.org/buildfarm-server.git/blobdiff_plain/6c62797fe23926f40899bfec10424d277705e62a..a59c49981887fdcc58a1c3b00ebfb1e9f80b9699:/trunk/cgi-bin/envtest.pl diff --git a/trunk/cgi-bin/envtest.pl b/trunk/cgi-bin/envtest.pl deleted file mode 100644 index f86621f..0000000 --- a/trunk/cgi-bin/envtest.pl +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/perl - -print "Content-Type: text/plain\n\n"; - -print "Conf: $ENV{BFConfDir}\n"; - -print `pwd`; - -print `id`; - -foreach my $key (sort keys %ENV) -{ - my $val = $ENV{$key}; - print "$key=$val\n"; -}