Re: sa-update gives error message Insecure dependency in open while running with -T switch

2007-02-08 Thread Magnus Holmgren
On Friday 09 February 2007 00:52, Philip Seccombe wrote:
> I really am getting confused here
>
> nibbler:/etc/init.d# spamassassin -V
> SpamAssassin version 3.0.3
>   running on Perl version 5.8.4
> nibbler:/etc/init.d#
>
> nibbler:/etc/init.d# apt-get install spamassassin
> Reading Package Lists... Done
> Building Dependency Tree... Done
> spamassassin is already the newest version.
> 0 upgraded, 0 newly installed, 0 to remove and 38 not upgraded.
> nibbler:/etc/init.d#

Hey, you didn't say nothing about Debian (or Ubuntu, etc.)! You most likely 
don't want to mix deb-packaged perl modules with cpan-installed ones. Looks 
like you have multiple versions of everything installed.

The modules installed by cpan are probably under /usr/local/lib/perl 
and /usr/local/share/perl. Clean out the ones you already have 
under /usr/lib/perl, /usr/lib/perl5, /usr/share/perl, and /usr/share/perl5.

> If apt-get will not install it, how do I upgrade it properly?

You have to wait for Etch to be released or add a suitable repository 
specification to /etc/apt/sources.list, for example one from backports.org.

-- 
Magnus Holmgren[EMAIL PROTECTED]
   (No Cc of list mail needed, thanks)

  "Exim is better at being younger, whereas sendmail is better for 
   Scrabble (50 point bonus for clearing your rack)" -- Dave Evans


pgp1fyLx4vxE6.pgp
Description: PGP signature


Re: sa-update gives error message Insecure dependency in open while running with -T switch

2007-02-08 Thread Bob McClure Jr
On Fri, Feb 09, 2007 at 12:47:54PM +1300, Philip Seccombe wrote:
> Running through that gets me to this:
> 
> Typical frequently used setting:
> 
> --uninst 1   # uninstall conflicting files
> 
> Your choice:  [] --uninst 1
> 
> 
> Please remember to call 'o conf commit' to make the config permanent!
> 
> CPAN: Storable loaded ok
> Going to read /root/.cpan/Metadata
>   Database was generated on Wed, 07 Feb 2007 23:09:31 GMT
> Test::Harness is up to date (2.64).
> ExtUtils::CBuilder is up to date (0.18).
> Module::Build is up to date (0.2806).
> File::Spec is up to date (3.24).
> File::Temp is up to date (0.18).
> Scalar::Util is up to date (1.19).
> Test::More is up to date (0.67).
> Data::Dumper is up to date (2.121).
> Digest::SHA is up to date (5.44).
> File::HomeDir is up to date (0.63).
> Compress::Zlib is up to date (2.003).
> Archive::Tar is up to date (1.30).
> Archive::Zip is up to date (1.18).
> Net::Cmd is up to date (2.27).
> Net::FTP is up to date (2.77).
> Term::ReadKey is up to date (2.30).
> Term::ReadLine::Perl is up to date (1.0302).
> YAML is up to date (0.62).
> Text::Glob is up to date (0.07).
> CPAN is up to date (1.8802).
> File::Which is up to date (0.05).
> nibbler:~#
> 
> And there's just nothing happening

Well, you're back at the shell script.  Everything you did should be
saved in your local configuration, so go back and run the

  perl -MCPAN -e 'install IO::File'

command line (note correction).  Also note that on most installations
you can run it interactively by just putting this on the command line:

  cpan

Then, at the cpan prompt, put

  install IO::File

or whatever else you want to do.

> Kind Regards,
> Philip Seccombe
> Turnstone Technologies NZ Limited
> 
> Phone: +64 9 970 5550
> Fax: +64 9 970 5559
> DDI: +64 9 970 5552
> Email: [EMAIL PROTECTED] 
> Web: www.turnstone.co.nz 
> 
> 
> -Original Message-
> From: Bob McClure Jr [mailto:[EMAIL PROTECTED] 
> Sent: Friday, 9 February 2007 12:41 p.m.
> To: users@spamassassin.apache.org
> Subject: Re: sa-update gives error message Insecure dependency in open
> while running with -T switch
> 
> On Fri, Feb 09, 2007 at 12:26:31PM +1300, Philip Seccombe wrote:
> > I ran perl -MCPAN -e 'install Bundle:CPAN' and went through all the
> > updates using defaults
> > 
> > Now it says:
> > 
> > nibbler:~# perl -MCPAN -e 'install File::IO'
> 
> Don't forget that should be IO::File.
> 
> > CPAN: File::HomeDir loaded ok
> > Sorry, we have to rerun the configuration dialog for CPAN.pm due to
> > the following indispensable but missing parameters:
> > 
> > mbuild_arg, mbuild_install_arg, mbuild_install_build_command,
> > mbuildpl_arg
> > 
> > 
> > The next questions deal with Module::Build support.
> > 
> > A Build.PL is run by perl in a separate process. Likewise we run
> > './Build' and './Build install' in separate processes. If you have any
> > parameters you want to pass to the calls, please specify them here.
> > 
> > Parameters for the 'perl Build.PL' command?
> > Typical frequently used settings:
> > 
> > --install_base /home/xxx # different installation
> > directory
> > 
> > Your choice:  []
> > 
> > 
> > Oops :s
> 
> Okay, you're just running the setup for CPAN.  Take most of the
> defaults, but I recommend you specify UNINST=1 for the install option,
> as suggested, and then select the CPAN server(s) you want.
> 
> Then it will proceed with the install of IO::File.
> 
> > Kind Regards,
> > Philip Seccombe
> > Turnstone Technologies NZ Limited
> > 
> > Phone: +64 9 970 5550
> > Fax: +64 9 970 5559
> > DDI: +64 9 970 5552
> > Email: [EMAIL PROTECTED] 
> > Web: www.turnstone.co.nz 
> > 
> > 
> 
> Cheers,
> -- 
> Bob McClure, Jr.

Cheers,
-- 
Bob McClure, Jr. Bobcat Open Systems, Inc.
[EMAIL PROTECTED] http://www.bobcatos.com
"Ah, Sovereign LORD, you have made the heavens and the earth by your
great power and outstretched arm. Nothing is too hard for you."
Jeremiah 32:17 (NIV)


RE: sa-update gives error message Insecure dependency in open while running with -T switch

2007-02-08 Thread Philip Seccombe
I really am getting confused here

nibbler:/etc/init.d# spamassassin -V
SpamAssassin version 3.0.3
  running on Perl version 5.8.4
nibbler:/etc/init.d#

nibbler:/etc/init.d# apt-get install spamassassin
Reading Package Lists... Done
Building Dependency Tree... Done
spamassassin is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 38 not upgraded.
nibbler:/etc/init.d#

If apt-get will not install it, how do I upgrade it properly?



Kind Regards,
Philip Seccombe
Turnstone Technologies NZ Limited

Phone: +64 9 970 5550
Fax: +64 9 970 5559
DDI: +64 9 970 5552
Email: [EMAIL PROTECTED] 
Web: www.turnstone.co.nz 


-Original Message-
From: Daryl C. W. O'Shea [mailto:[EMAIL PROTECTED] 
Sent: Friday, 9 February 2007 11:59 a.m.
To: Philip Seccombe
Cc: users@spamassassin.apache.org
Subject: Re: sa-update gives error message Insecure dependency in open
while running with -T switch

Philip Seccombe wrote:
> [9013] dbg: generic: SpamAssassin version 3.1.0

Upgrade SA to anything newer than 3.1.0.


RE: sa-update gives error message Insecure dependency in open while running with -T switch

2007-02-08 Thread Philip Seccombe
Running through that gets me to this:

Typical frequently used setting:

--uninst 1   # uninstall conflicting files

Your choice:  [] --uninst 1


Please remember to call 'o conf commit' to make the config permanent!

CPAN: Storable loaded ok
Going to read /root/.cpan/Metadata
  Database was generated on Wed, 07 Feb 2007 23:09:31 GMT
Test::Harness is up to date (2.64).
ExtUtils::CBuilder is up to date (0.18).
Module::Build is up to date (0.2806).
File::Spec is up to date (3.24).
File::Temp is up to date (0.18).
Scalar::Util is up to date (1.19).
Test::More is up to date (0.67).
Data::Dumper is up to date (2.121).
Digest::SHA is up to date (5.44).
File::HomeDir is up to date (0.63).
Compress::Zlib is up to date (2.003).
Archive::Tar is up to date (1.30).
Archive::Zip is up to date (1.18).
Net::Cmd is up to date (2.27).
Net::FTP is up to date (2.77).
Term::ReadKey is up to date (2.30).
Term::ReadLine::Perl is up to date (1.0302).
YAML is up to date (0.62).
Text::Glob is up to date (0.07).
CPAN is up to date (1.8802).
File::Which is up to date (0.05).
nibbler:~#

And there's just nothing happening


Kind Regards,
Philip Seccombe
Turnstone Technologies NZ Limited

Phone: +64 9 970 5550
Fax: +64 9 970 5559
DDI: +64 9 970 5552
Email: [EMAIL PROTECTED] 
Web: www.turnstone.co.nz 


-Original Message-
From: Bob McClure Jr [mailto:[EMAIL PROTECTED] 
Sent: Friday, 9 February 2007 12:41 p.m.
To: users@spamassassin.apache.org
Subject: Re: sa-update gives error message Insecure dependency in open
while running with -T switch

On Fri, Feb 09, 2007 at 12:26:31PM +1300, Philip Seccombe wrote:
> I ran perl -MCPAN -e 'install Bundle:CPAN' and went through all the
> updates using defaults
> 
> Now it says:
> 
> nibbler:~# perl -MCPAN -e 'install File::IO'

Don't forget that should be IO::File.

> CPAN: File::HomeDir loaded ok
> Sorry, we have to rerun the configuration dialog for CPAN.pm due to
> the following indispensable but missing parameters:
> 
> mbuild_arg, mbuild_install_arg, mbuild_install_build_command,
> mbuildpl_arg
> 
> 
> The next questions deal with Module::Build support.
> 
> A Build.PL is run by perl in a separate process. Likewise we run
> './Build' and './Build install' in separate processes. If you have any
> parameters you want to pass to the calls, please specify them here.
> 
> Parameters for the 'perl Build.PL' command?
> Typical frequently used settings:
> 
> --install_base /home/xxx # different installation
> directory
> 
> Your choice:  []
> 
> 
> Oops :s

Okay, you're just running the setup for CPAN.  Take most of the
defaults, but I recommend you specify UNINST=1 for the install option,
as suggested, and then select the CPAN server(s) you want.

Then it will proceed with the install of IO::File.

> Kind Regards,
> Philip Seccombe
> Turnstone Technologies NZ Limited
> 
> Phone: +64 9 970 5550
> Fax: +64 9 970 5559
> DDI: +64 9 970 5552
> Email: [EMAIL PROTECTED] 
> Web: www.turnstone.co.nz 
> 
> 

Cheers,
-- 
Bob McClure, Jr. Bobcat Open Systems, Inc.
[EMAIL PROTECTED] http://www.bobcatos.com
"Ah, Sovereign LORD, you have made the heavens and the earth by your
great power and outstretched arm. Nothing is too hard for you."
Jeremiah 32:17 (NIV)


Re: sa-update gives error message Insecure dependency in open while running with -T switch

2007-02-08 Thread Daryl C. W. O'Shea

Philip Seccombe wrote:

[9013] dbg: generic: SpamAssassin version 3.1.0


Upgrade SA to anything newer than 3.1.0.


Re: sa-update gives error message Insecure dependency in open while running with -T switch

2007-02-08 Thread Bob McClure Jr
On Fri, Feb 09, 2007 at 12:26:31PM +1300, Philip Seccombe wrote:
> I ran perl -MCPAN -e 'install Bundle:CPAN' and went through all the
> updates using defaults
> 
> Now it says:
> 
> nibbler:~# perl -MCPAN -e 'install File::IO'

Don't forget that should be IO::File.

> CPAN: File::HomeDir loaded ok
> Sorry, we have to rerun the configuration dialog for CPAN.pm due to
> the following indispensable but missing parameters:
> 
> mbuild_arg, mbuild_install_arg, mbuild_install_build_command,
> mbuildpl_arg
> 
> 
> The next questions deal with Module::Build support.
> 
> A Build.PL is run by perl in a separate process. Likewise we run
> './Build' and './Build install' in separate processes. If you have any
> parameters you want to pass to the calls, please specify them here.
> 
> Parameters for the 'perl Build.PL' command?
> Typical frequently used settings:
> 
> --install_base /home/xxx # different installation
> directory
> 
> Your choice:  []
> 
> 
> Oops :s

Okay, you're just running the setup for CPAN.  Take most of the
defaults, but I recommend you specify UNINST=1 for the install option,
as suggested, and then select the CPAN server(s) you want.

Then it will proceed with the install of IO::File.

> Kind Regards,
> Philip Seccombe
> Turnstone Technologies NZ Limited
> 
> Phone: +64 9 970 5550
> Fax: +64 9 970 5559
> DDI: +64 9 970 5552
> Email: [EMAIL PROTECTED] 
> Web: www.turnstone.co.nz 
> 
> 

Cheers,
-- 
Bob McClure, Jr. Bobcat Open Systems, Inc.
[EMAIL PROTECTED] http://www.bobcatos.com
"Ah, Sovereign LORD, you have made the heavens and the earth by your
great power and outstretched arm. Nothing is too hard for you."
Jeremiah 32:17 (NIV)


Re: sa-update gives error message Insecure dependency in open while running with -T switch

2007-02-08 Thread Doc Schneider

Bob McClure Jr wrote:

On Fri, Feb 09, 2007 at 12:02:52PM +1300, Philip Seccombe wrote:

This is what happens:




Warning: Cannot install File::IO, don't know what it is.
Try the command

i /File::IO/


That should be IO::FILE.


ARG... "Dyslexics of the world untie!" My bad for sure.

perl -MCPAN -e 'install IO::File'

Now that should work!

--

 -Doc

 SA/SARE -- Ninja
   5:20pm  up 5 days,  8:46, 17 users,  load average: 0.76, 1.39, 1.07

 SARE HQ  http://www.rulesemporium.com/


RE: sa-update gives error message Insecure dependency in open while running with -T switch

2007-02-08 Thread Philip Seccombe
I ran perl -MCPAN -e 'install Bundle:CPAN' and went through all the
updates using defaults

Now it says:

nibbler:~# perl -MCPAN -e 'install File::IO'
CPAN: File::HomeDir loaded ok
Sorry, we have to rerun the configuration dialog for CPAN.pm due to
the following indispensable but missing parameters:

mbuild_arg, mbuild_install_arg, mbuild_install_build_command,
mbuildpl_arg


The next questions deal with Module::Build support.

A Build.PL is run by perl in a separate process. Likewise we run
'./Build' and './Build install' in separate processes. If you have any
parameters you want to pass to the calls, please specify them here.

Parameters for the 'perl Build.PL' command?
Typical frequently used settings:

--install_base /home/xxx # different installation
directory

Your choice:  []


Oops :s


Kind Regards,
Philip Seccombe
Turnstone Technologies NZ Limited

Phone: +64 9 970 5550
Fax: +64 9 970 5559
DDI: +64 9 970 5552
Email: [EMAIL PROTECTED] 
Web: www.turnstone.co.nz 


-Original Message-
From: Bob McClure Jr [mailto:[EMAIL PROTECTED] 
Sent: Friday, 9 February 2007 12:12 p.m.
To: users@spamassassin.apache.org
Subject: Re: sa-update gives error message Insecure dependency in open
while running with -T switch

On Fri, Feb 09, 2007 at 12:02:52PM +1300, Philip Seccombe wrote:
> This is what happens:
> 
> commit: wrote /etc/perl/CPAN/Config.pm
> CPAN: Storable loaded ok
> CPAN: LWP::UserAgent loaded ok
> Fetching with LWP:
>   ftp://ftp.perl.org/pub/CPAN/authors/01mailrc.txt.gz
> LWP failed with code[500] message[LWP::Protocol::MyFTP: Bad hostname
> 'ftp.perl.org']
> Fetching with Net::FTP:
>   ftp://ftp.perl.org/pub/CPAN/authors/01mailrc.txt.gz
> Going to read /root/.cpan/sources/authors/01mailrc.txt.gz
> CPAN: Compress::Zlib loaded ok
> Fetching with LWP:
>   ftp://ftp.perl.org/pub/CPAN/modules/02packages.details.txt.gz
> Going to read /root/.cpan/sources/modules/02packages.details.txt.gz
>   Database was generated on Wed, 07 Feb 2007 23:09:31 GMT
> 
>   There's a new CPAN.pm version (v1.8802) available!
>   [Current version is v1.7601]
>   You might want to try
> install Bundle::CPAN
> reload cpan
>   without quitting the current session. It should be a seamless
upgrade
>   while we are running...
> 
> Fetching with LWP:
>   ftp://ftp.perl.org/pub/CPAN/modules/03modlist.data.gz
> Going to read /root/.cpan/sources/modules/03modlist.data.gz
> Going to write /root/.cpan/Metadata
> Warning: Cannot install File::IO, don't know what it is.
> Try the command
> 
> i /File::IO/

That should be IO::FILE.

> to find objects with matching identifiers.
> nibbler:~#
> 
> 
> Kind Regards,
> Philip Seccombe
> Turnstone Technologies NZ Limited
> 
> Phone: +64 9 970 5550
> Fax: +64 9 970 5559
> DDI: +64 9 970 5552
> Email: [EMAIL PROTECTED] 
> Web: www.turnstone.co.nz 
> 
> 
> -----Original Message-----
> From: Doc Schneider [mailto:[EMAIL PROTECTED] 
> Sent: Friday, 9 February 2007 11:53 a.m.
> To: Philip Seccombe
> Cc: users@spamassassin.apache.org
> Subject: Re: sa-update gives error message Insecure dependency in open
> while running with -T switch
> 
> Philip Seccombe wrote:
> > Hi everyone,
> > 
> >  
> > 
> > Tried Googling this but no success
> > 
> >  
> > 
> > Any advise would be greatly appreciated
> > 
> >  
> > 
> > Is it updating or is that error mean it is stopping at the end and
not
> 
> > updating?
> > 
> >  
> > 
> > When I run sa-update -D I get the following:
> 
> > [9013] dbg: channel: extracting archive
> > 
> > Insecure dependency in open while running with -T switch at 
> > /usr/lib/perl/5.8/IO/File.pm line 70.
> 
> You can more than likely re-install File::IO which is part of the perl

> base but seems to me to be borked.
> 
> #perl -MCPAN -e 'install File::IO'
> 
> Should work. from your directory is appears you're using perl 5.8.??
Do 
> a perl -v and if that install fails send along the version info.
> 
> -- 
> 
>   -Doc
> 
>   SA/SARE/URIBL/SURBL -- Ninja
> 4:48pm  up 5 days,  8:14, 17 users,  load average: 0.40, 0.67,
0.66
> 
>   SARE HQ  http://www.rulesemporium.com/

Cheers,
-- 
Bob McClure, Jr. Bobcat Open Systems, Inc.
[EMAIL PROTECTED] http://www.bobcatos.com
"Ah, Sovereign LORD, you have made the heavens and the earth by your
great power and outstretched arm. Nothing is too hard for you."
Jeremiah 32:17 (NIV)


Re: sa-update gives error message Insecure dependency in open while running with -T switch

2007-02-08 Thread Bob McClure Jr
On Fri, Feb 09, 2007 at 12:02:52PM +1300, Philip Seccombe wrote:
> This is what happens:
> 
> commit: wrote /etc/perl/CPAN/Config.pm
> CPAN: Storable loaded ok
> CPAN: LWP::UserAgent loaded ok
> Fetching with LWP:
>   ftp://ftp.perl.org/pub/CPAN/authors/01mailrc.txt.gz
> LWP failed with code[500] message[LWP::Protocol::MyFTP: Bad hostname
> 'ftp.perl.org']
> Fetching with Net::FTP:
>   ftp://ftp.perl.org/pub/CPAN/authors/01mailrc.txt.gz
> Going to read /root/.cpan/sources/authors/01mailrc.txt.gz
> CPAN: Compress::Zlib loaded ok
> Fetching with LWP:
>   ftp://ftp.perl.org/pub/CPAN/modules/02packages.details.txt.gz
> Going to read /root/.cpan/sources/modules/02packages.details.txt.gz
>   Database was generated on Wed, 07 Feb 2007 23:09:31 GMT
> 
>   There's a new CPAN.pm version (v1.8802) available!
>   [Current version is v1.7601]
>   You might want to try
> install Bundle::CPAN
> reload cpan
>   without quitting the current session. It should be a seamless upgrade
>   while we are running...
> 
> Fetching with LWP:
>   ftp://ftp.perl.org/pub/CPAN/modules/03modlist.data.gz
> Going to read /root/.cpan/sources/modules/03modlist.data.gz
> Going to write /root/.cpan/Metadata
> Warning: Cannot install File::IO, don't know what it is.
> Try the command
> 
> i /File::IO/

That should be IO::FILE.

> to find objects with matching identifiers.
> nibbler:~#
> 
> 
> Kind Regards,
> Philip Seccombe
> Turnstone Technologies NZ Limited
> 
> Phone: +64 9 970 5550
> Fax: +64 9 970 5559
> DDI: +64 9 970 5552
> Email: [EMAIL PROTECTED] 
> Web: www.turnstone.co.nz 
> 
> 
> -Original Message-----
> From: Doc Schneider [mailto:[EMAIL PROTECTED] 
> Sent: Friday, 9 February 2007 11:53 a.m.
> To: Philip Seccombe
> Cc: users@spamassassin.apache.org
> Subject: Re: sa-update gives error message Insecure dependency in open
> while running with -T switch
> 
> Philip Seccombe wrote:
> > Hi everyone,
> > 
> >  
> > 
> > Tried Googling this but no success
> > 
> >  
> > 
> > Any advise would be greatly appreciated
> > 
> >  
> > 
> > Is it updating or is that error mean it is stopping at the end and not
> 
> > updating?
> > 
> >  
> > 
> > When I run sa-update -D I get the following:
> 
> > [9013] dbg: channel: extracting archive
> > 
> > Insecure dependency in open while running with -T switch at 
> > /usr/lib/perl/5.8/IO/File.pm line 70.
> 
> You can more than likely re-install File::IO which is part of the perl 
> base but seems to me to be borked.
> 
> #perl -MCPAN -e 'install File::IO'
> 
> Should work. from your directory is appears you're using perl 5.8.?? Do 
> a perl -v and if that install fails send along the version info.
> 
> -- 
> 
>   -Doc
> 
>   SA/SARE/URIBL/SURBL -- Ninja
> 4:48pm  up 5 days,  8:14, 17 users,  load average: 0.40, 0.67, 0.66
> 
>   SARE HQ  http://www.rulesemporium.com/

Cheers,
-- 
Bob McClure, Jr. Bobcat Open Systems, Inc.
[EMAIL PROTECTED] http://www.bobcatos.com
"Ah, Sovereign LORD, you have made the heavens and the earth by your
great power and outstretched arm. Nothing is too hard for you."
Jeremiah 32:17 (NIV)


RE: sa-update gives error message Insecure dependency in open while running with -T switch

2007-02-08 Thread Philip Seccombe
This is what happens:

commit: wrote /etc/perl/CPAN/Config.pm
CPAN: Storable loaded ok
CPAN: LWP::UserAgent loaded ok
Fetching with LWP:
  ftp://ftp.perl.org/pub/CPAN/authors/01mailrc.txt.gz
LWP failed with code[500] message[LWP::Protocol::MyFTP: Bad hostname
'ftp.perl.org']
Fetching with Net::FTP:
  ftp://ftp.perl.org/pub/CPAN/authors/01mailrc.txt.gz
Going to read /root/.cpan/sources/authors/01mailrc.txt.gz
CPAN: Compress::Zlib loaded ok
Fetching with LWP:
  ftp://ftp.perl.org/pub/CPAN/modules/02packages.details.txt.gz
Going to read /root/.cpan/sources/modules/02packages.details.txt.gz
  Database was generated on Wed, 07 Feb 2007 23:09:31 GMT

  There's a new CPAN.pm version (v1.8802) available!
  [Current version is v1.7601]
  You might want to try
install Bundle::CPAN
reload cpan
  without quitting the current session. It should be a seamless upgrade
  while we are running...

Fetching with LWP:
  ftp://ftp.perl.org/pub/CPAN/modules/03modlist.data.gz
Going to read /root/.cpan/sources/modules/03modlist.data.gz
Going to write /root/.cpan/Metadata
Warning: Cannot install File::IO, don't know what it is.
Try the command

i /File::IO/

to find objects with matching identifiers.
nibbler:~#


Kind Regards,
Philip Seccombe
Turnstone Technologies NZ Limited

Phone: +64 9 970 5550
Fax: +64 9 970 5559
DDI: +64 9 970 5552
Email: [EMAIL PROTECTED] 
Web: www.turnstone.co.nz 


-Original Message-
From: Doc Schneider [mailto:[EMAIL PROTECTED] 
Sent: Friday, 9 February 2007 11:53 a.m.
To: Philip Seccombe
Cc: users@spamassassin.apache.org
Subject: Re: sa-update gives error message Insecure dependency in open
while running with -T switch

Philip Seccombe wrote:
> Hi everyone,
> 
>  
> 
> Tried Googling this but no success
> 
>  
> 
> Any advise would be greatly appreciated
> 
>  
> 
> Is it updating or is that error mean it is stopping at the end and not

> updating?
> 
>  
> 
> When I run sa-update -D I get the following:

> [9013] dbg: channel: extracting archive
> 
> Insecure dependency in open while running with -T switch at 
> /usr/lib/perl/5.8/IO/File.pm line 70.

You can more than likely re-install File::IO which is part of the perl 
base but seems to me to be borked.

#perl -MCPAN -e 'install File::IO'

Should work. from your directory is appears you're using perl 5.8.?? Do 
a perl -v and if that install fails send along the version info.

-- 

  -Doc

  SA/SARE/URIBL/SURBL -- Ninja
4:48pm  up 5 days,  8:14, 17 users,  load average: 0.40, 0.67, 0.66

  SARE HQ  http://www.rulesemporium.com/


Re: sa-update gives error message Insecure dependency in open while running with -T switch

2007-02-08 Thread Doc Schneider

Philip Seccombe wrote:

Hi everyone,

 


Tried Googling this but no success

 


Any advise would be greatly appreciated

 

Is it updating or is that error mean it is stopping at the end and not 
updating?


 


When I run sa-update –D I get the following:



[9013] dbg: channel: extracting archive

Insecure dependency in open while running with -T switch at 
/usr/lib/perl/5.8/IO/File.pm line 70.


You can more than likely re-install File::IO which is part of the perl 
base but seems to me to be borked.


#perl -MCPAN -e 'install File::IO'

Should work. from your directory is appears you're using perl 5.8.?? Do 
a perl -v and if that install fails send along the version info.


--

 -Doc

 SA/SARE/URIBL/SURBL -- Ninja
   4:48pm  up 5 days,  8:14, 17 users,  load average: 0.40, 0.67, 0.66

 SARE HQ  http://www.rulesemporium.com/