-----Original Message----- From: Don Newcomer [mailto:newcomer@dickinson.edu] Sent: Tuesday, April 13, 2004 14:22 To: SURBL Discussion List Subject: [SURBL-Discuss] SURBL test
I'm in the process of building SpamCopURI 0.09 on a Tru64 UNIX v5.1B box using Perl 5.8.3. The 'make test' phase failed on only one test:
PERL_DL_NONLAZY=1 /usr/ucb/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t t/bad..............ok t/blacklist........ok t/cache............ok t/dnsrbl...........ok 4/6# Failed test (t/dnsrbl.t at line 25) t/dnsrbl...........NOK 5# Looks like you failed 1 tests of 6. t/dnsrbl...........dubious Test returned status 1 (wstat 256, 0x100) DIED. FAILED test 5 Failed 1/6 tests, 83.33% okay
Don,
Someone else posted on the MailScanner list a fix that got me past this problem. On line 25 of the dnsrbl.t file, change the IP address from 211.147.224.30 to 127.0.0.2. That seems to make the test complete properly...
I think someone also said that it was fixed in the next version, but one of the developers should be able to confirm that...
k
That does solve the test problem but once I do make install and then spamassassin --lint I still get: Failed to compile URI SpamAssassin tests, skipping: (syntax error at /usr/share/spamassassin/81_spamcop_uri.cf, rule SPAMCOP_URI_RBL, line 1, near "eval:" syntax error at /usr/share/spamassassin/20_uri_tests.cf, rule URI_OFFERS, line 178, near "; }" ) Any idea what could be causing this?
Let me know how I may be of service, =C= * Cal Evans * http://www.eicc.com * We take care of your IT, * So you can take care of your business. * * I think inside the sphere.
Kevin Hanser wrote:
-----Original Message----- From: Don Newcomer [mailto:newcomer@dickinson.edu] Sent: Tuesday, April 13, 2004 14:22 To: SURBL Discussion List Subject: [SURBL-Discuss] SURBL test
I'm in the process of building SpamCopURI 0.09 on a Tru64 UNIX v5.1B box using Perl 5.8.3. The 'make test' phase failed on only one test:
PERL_DL_NONLAZY=1 /usr/ucb/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t t/bad..............ok t/blacklist........ok t/cache............ok t/dnsrbl...........ok 4/6# Failed test (t/dnsrbl.t at line 25) t/dnsrbl...........NOK 5# Looks like you failed 1 tests of 6. t/dnsrbl...........dubious Test returned status 1 (wstat 256, 0x100) DIED. FAILED test 5 Failed 1/6 tests, 83.33% okay
Don,
Someone else posted on the MailScanner list a fix that got me past this problem. On line 25 of the dnsrbl.t file, change the IP address from 211.147.224.30 to 127.0.0.2. That seems to make the test complete properly...
I think someone also said that it was fixed in the next version, but one of the developers should be able to confirm that...
k
Discuss mailing list Discuss@lists.surbl.org http://lists.surbl.org/mailman/listinfo/discuss
On Tue, 2004-04-13 at 11:42, Cal Evans wrote:
That does solve the test problem but once I do make install and then spamassassin --lint I still get: Failed to compile URI SpamAssassin tests, skipping: (syntax error at /usr/share/spamassassin/81_spamcop_uri.cf, rule SPAMCOP_URI_RBL, line 1, near "eval:" syntax error at /usr/share/spamassassin/20_uri_tests.cf, rule URI_OFFERS, line 178, near "; }" ) Any idea what could be causing this?
Are you running on a Debian system?
When I ran into this, it was because, on a Debian system, the .pm files were not installed in the library directory perl was using for the existing SpamAssassin installation. They went into a SpamCopURI directory. If you move them from the SpamCopURI directory to the SpamAssassin one, it should work fine.
Gentoo. and SpamCopURI.pm is in /usr/lib/perl5/site_perl/5.8.2/Mail/SpamAssassin
I moved the *.pm into /usr/lib/perl5/vendor_perl/5.8.2/Mail/SpamAssassin
and now it works. Thanks for prodding me. (that's what I get for doing this without an ebuild!) :)
Let me know how I may be of service, =C= * Cal Evans * http://www.eicc.com * We take care of your IT, * So you can take care of your business. * * I think inside the sphere.
Walker Aumann wrote:
On Tue, 2004-04-13 at 11:42, Cal Evans wrote:
That does solve the test problem but once I do make install and then spamassassin --lint I still get: Failed to compile URI SpamAssassin tests, skipping: (syntax error at /usr/share/spamassassin/81_spamcop_uri.cf, rule SPAMCOP_URI_RBL, line 1, near "eval:" syntax error at /usr/share/spamassassin/20_uri_tests.cf, rule URI_OFFERS, line 178, near "; }" ) Any idea what could be causing this?
Are you running on a Debian system?
When I ran into this, it was because, on a Debian system, the .pm files were not installed in the library directory perl was using for the existing SpamAssassin installation. They went into a SpamCopURI directory. If you move them from the SpamCopURI directory to the SpamAssassin one, it should work fine.
That did the trick for me. I'm picking up hits right and left! Thanks.
Don
On Tue, 13 Apr 2004, Kevin Hanser wrote:
-----Original Message----- From: Don Newcomer [mailto:newcomer@dickinson.edu] Sent: Tuesday, April 13, 2004 14:22 To: SURBL Discussion List Subject: [SURBL-Discuss] SURBL test
I'm in the process of building SpamCopURI 0.09 on a Tru64 UNIX v5.1B box using Perl 5.8.3. The 'make test' phase failed on only one test:
PERL_DL_NONLAZY=1 /usr/ucb/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t t/bad..............ok t/blacklist........ok t/cache............ok t/dnsrbl...........ok 4/6# Failed test (t/dnsrbl.t at line 25) t/dnsrbl...........NOK 5# Looks like you failed 1 tests of 6. t/dnsrbl...........dubious Test returned status 1 (wstat 256, 0x100) DIED. FAILED test 5 Failed 1/6 tests, 83.33% okay
Don,
Someone else posted on the MailScanner list a fix that got me past this problem. On line 25 of the dnsrbl.t file, change the IP address from 211.147.224.30 to 127.0.0.2. That seems to make the test complete properly...
I think someone also said that it was fixed in the next version, but one of the developers should be able to confirm that...
k