Skip to Content.
Sympa Menu

Documentation for Sympa

NAME

Sympa::Archive - Archives of Sympa

SYNOPSIS

use Sympa::Archive;
$archive = Sympa::Archive->new(context => $list);

@arcs = $archive->get_archives;

$archive->store($message);
$archive->html_store($message);

$archive->select_archive('2015-04');
($message, $handle) = $archive->next;

$archive->select_archive('2015-04');
($message, $handle) = $archive->fetch(message_id => $message_id);
$archive->html_remove($message_id);
$archive->remove($handle);

$archive->html_rebuild('2015-04');

DESCRIPTION

Sympa::Archive implements the interface to handle archives.

Methods and functions

SEE ALSO

archived(8), mhonarc(1), wwsympa(8), Sympa::Message.

HISTORY

Archive was renamed to Sympa::Archive on Sympa 6.2.

Top of Page