Handle hostnames with upper-case letters
[webmin.git] / webmin / cpan_modules.pl
1
2 require 'webmin-lib.pl';
3
4 sub cpan_recommended
5 {
6 local @rv = ( "Authen::Libwrap", "Sys::Syslog" );
7 if (&has_command("openssl")) {
8         push(@rv, "Net::SSLeay");
9         }
10 eval "crypt('foo', 'xx')";
11 if ($@) {
12         push(@rv, "Crypt::UnixCrypt");
13         }
14 return @rv;
15 }
16