/usr/bin/razor-check is in razor 1:2.85-4build2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | #!/usr/bin/perl -w
eval 'exec /usr/bin/perl -w -S $0 ${1+"$@"}'
if 0; # not running under some shell
##
## I do the following.
##
## razor-check - check spam message against a Razor Catalogue Server.
##
## Copyright (c) 1998, Vipul Ved Prakash. All rights reserved.
## This code is free software; you can redistribute it and/or modify
## it under the same terms as Perl itself.
##
## $Id: razor-check,v 1.1 2005/06/16 19:45:54 rsoderberg Exp $
use lib qw(lib);
use strict;
use Razor2::Client::Agent;
my $agent = new Razor2::Client::Agent('razor-check')
or die $Razor2::Client::Agent::errstr;
$agent->read_options()
or die $agent->errstr ."\n";
$agent->do_conf()
or die $agent->errstr ."\n";
# quiet warning
my $dummy = $Razor2::Client::Agent::errstr;
#
# doit() will not exit
#
my $response = $agent->doit();
if ($response > 1) {
# error
print STDERR $agent->errstr;
}
exit $response;
|