On Tue, 27 Aug 2002, Chris Caughey wrote:
Just wondering if you ever found the source of your problem
referred to in the post below. I'm experiencing the same thing.
Insecure $ENV{ENV} while running with -T switch at /usr/sbin/pptp-command line 505, <STDIN> chunk 1
is it $ENV{ENV} or $ENV{PATH}? It would more likely be PATH
edit the program - whichever it is (you can use a text editor like vi or gedit to do it). Just after the line that says #!/usr/bin/perl -T (or something like that), add the following:
BEGIN { $ENV{PATH}='/usr/bin:/bin:/usr/local/bin'; }
If a BEGIN block already exists, then just add the line to that block, somewhere at the top. Don't add a second BEGIN block.