Gossamer Forum
Home : Products : Links 2.0 : Discussions :

Re: sendmail probs

Quote Reply
Re: sendmail probs In reply to
Right, this is the code i am now using (just gives me blank pages now, not IS Errors);


#!/usr/bin/perl

use strict;
print "Content-type: text/html\n\n";

use File::Find;
my (@mod, %done, $dir);

find (\&get_module, grep { -r and -d } @INC);
@mod = grep (!$done{$_}++, @mod);
foreach $dir (sort { length $b <=> length $a } @INC) {
foreach (@mod) { next if s,^\Q$dir,,; }
}
foreach (@mod) { s,^/(.*)\.pm$,$1,; s,/,::,g; print "$_{br}\n"; }

sub get_module {

/^.*\.pm$/ && /$ARGV[0]/i && push @mod, $File::Find::name;
}


Any ideas??? Frown

Thanks

Andy

http://www.ace-installer.com
webmaster@Ace-installer.com
Subject Author Views Date
Thread sendmail probs webburst 12015 Feb 2, 2001, 5:41 PM
Thread Re: sendmail probs
Paul 11726 Feb 2, 2001, 5:51 PM
Thread Re: sendmail probs
Andy 11616 Feb 6, 2001, 11:23 AM
Post Re: sendmail probs
Paul 11669 Feb 6, 2001, 11:30 AM
Thread Re: sendmail probs
Andy 11668 Feb 6, 2001, 11:29 AM
Post Re: sendmail probs
Paul 11653 Feb 6, 2001, 11:37 AM
Thread Re: sendmail probs
Paul 11699 Feb 6, 2001, 11:59 AM
Thread Re: sendmail probs
Andy 11703 Feb 6, 2001, 11:32 PM
Thread Re: sendmail probs
dan 11591 Feb 6, 2001, 11:48 PM
Thread Re: sendmail probs
Andy 11615 Feb 6, 2001, 11:50 PM
Thread Re: sendmail probs
dan 11655 Feb 7, 2001, 12:07 AM
Thread Re: sendmail probs
Andy 11661 Feb 7, 2001, 3:13 AM
Post Re: sendmail probs
Paul 11583 Feb 7, 2001, 5:10 AM
Thread Re: sendmail probs
Andy 11673 Feb 7, 2001, 12:33 PM
Thread Re: sendmail probs
dan 11647 Feb 7, 2001, 1:03 PM
Thread Re: sendmail probs
Andy 11699 Feb 7, 2001, 11:55 PM
Thread Re: sendmail probs
dan 11581 Feb 8, 2001, 12:26 AM
Thread Re: sendmail probs
Andy 11606 Feb 8, 2001, 1:22 AM
Thread Re: sendmail probs
Paul 5774 Feb 8, 2001, 4:21 PM
Post Re: sendmail probs
Andy 5695 Feb 8, 2001, 11:28 PM
Thread Re: sendmail probs
Andy 11573 Feb 8, 2001, 12:15 PM
Thread Re: sendmail probs
Stealth 11542 Feb 8, 2001, 12:57 PM
Thread Re: sendmail probs
Andy 11588 Feb 8, 2001, 1:04 PM
Thread Re: sendmail probs
dan 11638 Feb 8, 2001, 2:02 PM
Thread Re: sendmail probs
Stealth 11621 Feb 8, 2001, 3:52 PM
Post Re: sendmail probs
Paul 5592 Feb 8, 2001, 4:15 PM
Thread Re: sendmail probs
Stealth 5716 Feb 8, 2001, 5:59 PM
Thread Re: sendmail probs
Paul 5674 Feb 9, 2001, 4:57 AM
Thread Re: sendmail probs
Stealth 5620 Feb 9, 2001, 8:18 AM
Thread Re: sendmail probs
Paul 5719 Feb 9, 2001, 8:22 AM
Post Re: sendmail probs
Andy 5590 Feb 9, 2001, 12:28 PM
Post Re: sendmail probs
Andy 5730 Feb 8, 2001, 11:27 PM
Thread Re: sendmail probs
Paul 11494 Feb 8, 2001, 4:12 PM
Thread Re: sendmail probs
Andy 5707 Feb 8, 2001, 11:29 PM
Thread Re: sendmail probs
dan 5717 Feb 8, 2001, 11:44 PM
Post Re: sendmail probs
Andy 5716 Feb 8, 2001, 11:47 PM
Post Re: sendmail probs
Stealth 11660 Feb 7, 2001, 2:23 PM