a45ad0c940
Main changes since 4.1.2: Full virtual robot support ; you can now create 2 lists with the same name in different virtual robots Message topics : list messages can be tagged with topics. List owner defines a set of topics for the list. List members can select topics and only receive related messages. Sympa is now VERP enabled new return_path_suffix parameter in sympa.conf new 'digest_max_size' list parameter. If a digest exceeds this limit, then multiple messages are sent. New set of web templates, CSS and XHTML compatible. RSS channels are providing the following features : * latest messages in list archives * latest documents in web repository * latest created mailing lists * most active mailing lists Also, lots of other small features, translations and bug fixes.
41 lines
1.2 KiB
Text
41 lines
1.2 KiB
Text
$NetBSD: patch-ab,v 1.3 2007/03/28 20:51:10 bouyer Exp $
|
|
|
|
--- check_perl_modules.pl.orig 2006-11-16 10:47:33.000000000 +0100
|
|
+++ check_perl_modules.pl 2007-02-28 20:09:50.000000000 +0100
|
|
@@ -171,35 +171,7 @@
|
|
# Install a CPAN module
|
|
##----------------------
|
|
sub install_module {
|
|
- my ($module, $default) = @_;
|
|
-
|
|
- unless ($ENV{'FTP_PASSIVE'} eq 1) {
|
|
- $ENV{'FTP_PASSIVE'} = 1;
|
|
- print "Setting FTP Passive mode\n";
|
|
- }
|
|
-
|
|
- ## This is required on RedHat 9 for DBD::mysql installation
|
|
- my $lang = $ENV{'LANG'};
|
|
- $ENV{'LANG'} = 'C' if ($ENV{'LANG'} =~ /UTF\-8/);
|
|
-
|
|
- unless ($> == 0) {
|
|
- print "\#\# You need root privileges to install $module module. \#\#\n";
|
|
- print "\#\# Press the Enter key to continue checking modules. \#\#\n";
|
|
- my $t = <STDIN>;
|
|
- return undef;
|
|
- }
|
|
-
|
|
- printf "Description: %s\n", $opt_features{$module};
|
|
- print "Install module $module ? [$default]";
|
|
- my $answer = <STDIN>; chomp $answer;
|
|
- $answer ||= $default;
|
|
- next unless ($answer =~ /^y$/i);
|
|
- $CPAN::Config->{'inactivity_timeout'} = 4;
|
|
- CPAN::Shell->install($module);
|
|
-
|
|
- ## Restore lang
|
|
- $ENV{'LANG'} = $lang if (defined $lang);
|
|
-
|
|
+ 1;
|
|
}
|
|
|
|
###--------------------------
|