Razor2::Client::Agent(3) User Contributed Perl Documentation Razor2::Client::Agent(3)

Razor2::Client::Agent - Command-line interface for Vipul's Razor spam detection

use Razor2::Client::Agent;
my $agent = Razor2::Client::Agent->new('razor-check');
$agent->read_options() or $agent->raise_error;
$agent->do_conf()      or $agent->raise_error;
my $rc = $agent->doit({});
exit $rc;

Razor2::Client::Agent provides the user interface layer for Vipul's Razor, a distributed, collaborative spam detection and filtering network. It implements the command-line tools razor-check, razor-report, razor-revoke, and razor-admin.

This module inherits from Razor2::Client::Core (network protocol), Razor2::Client::Config (configuration management), Razor2::Logger (logging), and Razor2::String (utility functions).

Typical usage is through the command-line programs rather than calling this module directly. See razor-check(1), razor-report(1), razor-revoke(1), and razor-admin(1).

Constructor. $breed is the full program name, which must end with one of "razor-check", "razor-report", "razor-revoke", or "razor-admin". The breed determines which operations are available.

Deletes $ENV{PATH} and $ENV{BASH_ENV} for taint safety.

Parses command-line options via Getopt::Long. Returns true on success, false on error (error message available via errstr()).
Processes configuration: resolves razorhome, reads the config file, sets up logging, and creates the home directory if "-create" was specified. Must be called after read_options().
Main dispatcher. Calls the appropriate handler based on the breed: checkit() for check, adminit() for admin, reportit() for report and revoke.

Returns 0 for match (spam), 1 for no match (not spam), or 2 for error.

Checks mail against the Razor catalogue servers. Accepts input as filenames, mbox files, signatures on the command line, or a filehandle in $args.

Return values: 0 = spam detected, 1 = not spam, 2 = error.

Reports mail as spam (or revokes a previous report). Requires a valid Razor identity; attempts automatic registration if none is found. Backgrounds itself unless "-f" (foreground) is specified.

Return values: 0 = success, 2 = error.

Handles administrative tasks: creating razorhome ("-create"), server discovery ("-discover"), and identity registration ("-register").

Return values: 0 = success, 2 = error.

Parses input into individual mail messages. Supports mbox format (splitting on "^From " lines), single RFC 822 messages, filehandle input (via "$args->{fh}"), and array reference input (via "$args->{aref}").

Returns an array reference of scalar references to mail content.

Performs local whitelist and mailing-list checks. Returns true if the mail should be skipped (not checked against the server).
Loads the whitelist file specified in the configuration. The whitelist maps header names to patterns; matching mail is skipped.
Reads server lists, loads cached server configurations, and resolves the next server to connect to. Called before network operations.
Prints a fatal error message and exits with the Razor error code extracted from the message, or 255 if no code is found.
Logs a message at the given debug level. Uses the Razor2::Logger instance if available, otherwise prints to STDOUT in debug mode.
Returns true if the current debug level is at or above $loglevel. Use this to guard expensive log message construction.

See razor-agent.conf(5) for configuration file format and options.

The razorhome directory (default ~/.razor/, system-wide /etc/razor/) stores configuration files, server lists, identity files, and logs.

razor-check(1), razor-report(1), razor-revoke(1), razor-admin(1), razor-agent.conf(5), razor-whitelist(5), Razor2::Client::Core, Razor2::Client::Config

Vipul Ved Prakash, <mail@vipul.net>

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

2026-04-06 perl v5.42.2