Sponsor:

Your company here, and a link to your site. Click to find out more.

Sympa::Spool::Moderation.3Sympa - Man Page

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.

new ( [ context => $list ], [ authkey => $modkey ] )
next ( [ no_lock => 1 ] )

If the pairs describing metadatas are specified, contents returned by next() are filtered by them.

quarantine ( )

Does nothing.

remove ( $handle, [ action => 'distribute' ] )

If action is specified, rename message file to add it as extension, instead of removing message file. Otherwise, removes message file.

size ( )

Returns number of messages in the spool except which have extension.

store ( $message, [ original => $original ] )

If storing succeeded, returns moderation key.

Methods specific to this module

html_remove ( $metadata )

Instance method. TBD.

Parameters:

$metadata

Hashref or message containing metadata. At least context and authkey are required.

Returns:

None.

html_store ( $message, $modkey )

Instance method. Caches HTML view of message.

Parameters:

$message

Message to be stored.

$modkey

Moderation key.

Returns:

None.

Context and metadata

See also "Marshaling and unmarshaling metadata" in Sympa::Spool.

This class particularly gives following metadata:

{authkey}

Moderation key generated automatically when the message is stored into spool.

{validated}

Keeps a string representing extension, if message has been renamed using remove() with option.

Configuration Parameters

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

queuemod

Directory path of moderation spool.

viewmail_dir

Root directory path of directories where HTML view of messages are cached.

See Also

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

History

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

Info

2023-07-22 sympa 6.2.72