Skip to Content.
Sympa Menu

Documentation for Sympa

NAME

Sympa::Spool::Moderation - Spool for held messages waiting for moderation

SYNOPSIS

use Sympa::Spool::Moderation;

my $spool = Sympa::Spool::Moderation->new;
my $modkey = $spool->store($message);

my $spool =
    Sympa::Spool::Moderation->new(context => $list, authkey => $modkey);
my ($message, $handle) = $spool->next;

$spool->remove($handle, action => 'distribute');
$spool->remove($handle);

DESCRIPTION

Sympa::Spool::Moderation implements the spool for held messages waiting for moderation.

Methods

See also “Public methods” in Sympa::Spool.

Methods specific to this module

Context and metadata

See also “Marshaling and unmarshaling metadata” in Sympa::Spool.

This class particularly gives following metadata:

CONFIGURATION PARAMETERS

Following site configuration parameters in sympa.conf will be referred.

SEE ALSO

sympa_msg(8), wwsympa(8), Sympa::Message, Sympa::Spool.

HISTORY

Sympa::Spool::Moderation appeared on Sympa 6.2.8.

Top of Page